C# Class 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
Inheritance: AsynchronousEvent, IDebugSymbolSearchEvent2
显示文件 Open project: IntelliTect/PowerStudio Class Usage Examples

Public Methods

Method Description
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

Method Details

GetSymbolSearchInfo() public method

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.
return int

SymbolSearchEvent() public method

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