C# 클래스 DbgEngManaged.DebugClient

Static class with functions that provide creation of interfaces pointers to debug client objects.
파일 보기 프로젝트 열기: southpolenator/WinDbgCs

공개 메소드들

메소드 설명
DebugCreate ( ) : IDebugClient

The DebugCreate function creates a new client object and returns an interface pointer to it.

DebugCreateEx ( uint dbgEngOptions ) : IDebugClient

The DebugCreateEx function creates a new client object and returns an interface pointer to it.

OpenDumpFile ( string dumpFile, string symbolPath ) : IDebugClient

Opens the specified dump file.

OpenProcess ( string processPath, string processArguments, string symbolPath, uint debugEngineOptions ) : IDebugClient

Starts a new process.

비공개 메소드들

메소드 설명
DebugCreate ( [ InterfaceId, IDebugClient &Interface ) : int
DebugCreateEx ( [ InterfaceId, uint DbgEngOptions, IDebugClient &Interface ) : int

메소드 상세

DebugCreate() 공개 정적인 메소드

The DebugCreate function creates a new client object and returns an interface pointer to it.
public static DebugCreate ( ) : IDebugClient
리턴 IDebugClient

DebugCreateEx() 공개 정적인 메소드

The DebugCreateEx function creates a new client object and returns an interface pointer to it.
public static DebugCreateEx ( uint dbgEngOptions ) : IDebugClient
dbgEngOptions uint Supplies debugger option flags.
리턴 IDebugClient

OpenDumpFile() 공개 정적인 메소드

Opens the specified dump file.
public static OpenDumpFile ( string dumpFile, string symbolPath ) : IDebugClient
dumpFile string The dump file.
symbolPath string The symbol path.
리턴 IDebugClient

OpenProcess() 공개 정적인 메소드

Starts a new process.
public static OpenProcess ( string processPath, string processArguments, string symbolPath, uint debugEngineOptions ) : IDebugClient
processPath string Process path.
processArguments string Process arguments.
symbolPath string Symbol path.
debugEngineOptions uint Debug engine options.
리턴 IDebugClient