IDkmSymbolLocator.GetSymbolStatusMessage(DkmModuleInstance, Boolean) Method

Definition

Obtain a localized a string description of the current symbol status.

public:
 System::String ^ GetSymbolStatusMessage(Microsoft::VisualStudio::Debugger::DkmModuleInstance ^ moduleInstance, bool excludeCommonErrors);
public string GetSymbolStatusMessage (Microsoft.VisualStudio.Debugger.DkmModuleInstance moduleInstance, bool excludeCommonErrors);
abstract member GetSymbolStatusMessage : Microsoft.VisualStudio.Debugger.DkmModuleInstance * bool -> string
Public Function GetSymbolStatusMessage (moduleInstance As DkmModuleInstance, excludeCommonErrors As Boolean) As String

Parameters

moduleInstance
DkmModuleInstance

[In] The Module Instance class represent a code bundle (ex: dll or exe) which is loaded into a particular process at a particular location. Module Instance objects are 1:1 with the execution environment's notion of a code bundle. For example, in native code, Module Instance objects are 1:1 with base address.

excludeCommonErrors
Boolean

[In] This value will be true for creating the initial load output message, and false for obtaining the output window text.

Returns

[Out] Localized status string (ex: 'Symbols Loaded', 'No symbols loaded', etc.).

Applies to