IDkmSymbolLocator.GetSymbolLoadInformation(DkmModuleInstance) Method

Definition

Returns a string describing the various locations in which symbols were searched for, and the result of checking that location. This information is used to populate the 'Symbol Load Information' in the modules window.

public:
 System::String ^ GetSymbolLoadInformation(Microsoft::VisualStudio::Debugger::DkmModuleInstance ^ moduleInstance);
public string GetSymbolLoadInformation (Microsoft.VisualStudio.Debugger.DkmModuleInstance moduleInstance);
abstract member GetSymbolLoadInformation : Microsoft.VisualStudio.Debugger.DkmModuleInstance -> string
Public Function GetSymbolLoadInformation (moduleInstance As DkmModuleInstance) 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.

Returns

[Out] String containing information about the symbol search. The typical format is 'location1:result1\r\nlocation2:result2...'.

Applies to