C# 클래스 PowerStudio.DebugEngine.Events.SymbolSearchEvent

This interface is sent by the debug engine (DE) to indicate the results of searching for symbols for a module in the debuggee
상속: AsynchronousEvent, IDebugSymbolSearchEvent2
파일 보기 프로젝트 열기: IntelliTect/PowerStudio 1 사용 예제들

공개 메소드들

메소드 설명
GetSymbolSearchInfo ( IDebugModule3 &pModule, string &pbstrDebugMessage, enum_MODULE_INFO_FLAGS pdwModuleInfoFlags ) : int

Called by an event handler to retrieve results about a symbol load process.

When a handler receives the IDebugSymbolSearchEvent2 event after an attempt is made to load debugging symbols for a module, the handler can call this method to determine the results of that load.

SymbolSearchEvent ( DebugModuleBase module, string debugMessage, enum_MODULE_INFO_FLAGS symbolFlags ) : Microsoft.VisualStudio

메소드 상세

GetSymbolSearchInfo() 공개 메소드

Called by an event handler to retrieve results about a symbol load process.
When a handler receives the IDebugSymbolSearchEvent2 event after an attempt is made to load debugging symbols for a module, the handler can call this method to determine the results of that load.
public GetSymbolSearchInfo ( IDebugModule3 &pModule, string &pbstrDebugMessage, enum_MODULE_INFO_FLAGS pdwModuleInfoFlags ) : int
pModule IDebugModule3 An IDebugModule3 object representing the module for which the symbols were loaded.
pbstrDebugMessage string Returns a string containing any error messages from the module. If there is no error, then this string will just contain the module's name but it is never empty.
pdwModuleInfoFlags enum_MODULE_INFO_FLAGS A combination of flags from the MODULE_INFO_FLAGS enumeration indicating whether any symbols were loaded.
리턴 int

SymbolSearchEvent() 공개 메소드

public SymbolSearchEvent ( DebugModuleBase module, string debugMessage, enum_MODULE_INFO_FLAGS symbolFlags ) : Microsoft.VisualStudio
module DebugModuleBase
debugMessage string
symbolFlags enum_MODULE_INFO_FLAGS
리턴 Microsoft.VisualStudio