C# Class CsDebugScript.Engine.Native.Extensions

Extensions for DbgEng.dll interfaces for easier manipulation
ファイルを表示 Open project: southpolenator/WinDbgCs

Public Methods

Method Description
GetCurrentProcessExecutableName ( this systemObjects ) : string

Gets the name of the current process executable.

Request ( this client, DebugRequest requestType, EXT_TYPED_DATA request ) : EXT_TYPED_DATA

Requests the specified request type.

RequestExtended ( this client, DebugRequest requestType, EXT_TYPED_DATA request, string extended ) : EXT_TYPED_DATA

Requests the specified request type with extended structure.

Method Details

GetCurrentProcessExecutableName() public static method

Gets the name of the current process executable.
public static GetCurrentProcessExecutableName ( this systemObjects ) : string
systemObjects this The DbgEng.dll System objects interface.
return string

Request() public static method

Requests the specified request type.
public static Request ( this client, DebugRequest requestType, EXT_TYPED_DATA request ) : EXT_TYPED_DATA
client this The DbgEng.dll Advanced interface.
requestType DebugRequest Type of the request.
request EXT_TYPED_DATA The request.
return EXT_TYPED_DATA

RequestExtended() public static method

Requests the specified request type with extended structure.
public static RequestExtended ( this client, DebugRequest requestType, EXT_TYPED_DATA request, string extended ) : EXT_TYPED_DATA
client this The DbgEng.dll Advanced interface.
requestType DebugRequest Type of the request.
request EXT_TYPED_DATA The request.
extended string The extended string.
return EXT_TYPED_DATA