C# Class CsDebugScript.Exceptions.NotAllMemoryCanBeReadException

Thrown when user wants to read memory that is not fully available in the process being debugged.
Inheritance: System.Exception
Mostrar archivo Open project: southpolenator/WinDbgCs

Public Methods

Method Description
NotAllMemoryCanBeReadException ( ulong address, uint requestedSize, uint availableSize ) : System

Initializes a new instance of the NotAllMemoryCanBeReadException class.

Method Details

NotAllMemoryCanBeReadException() public method

Initializes a new instance of the NotAllMemoryCanBeReadException class.
public NotAllMemoryCanBeReadException ( ulong address, uint requestedSize, uint availableSize ) : System
address ulong The accessed address.
requestedSize uint The requested size.
availableSize uint The available size.
return System