IDkmClrSymbolCallback.GetFirstMethodInFirstDocument(DkmModule) Method

Definition

Returns the first method in the first document.

public:
 Microsoft::VisualStudio::Debugger::Clr::DkmClrMethodId GetFirstMethodInFirstDocument(Microsoft::VisualStudio::Debugger::Symbols::DkmModule ^ module);
public Microsoft.VisualStudio.Debugger.Clr.DkmClrMethodId GetFirstMethodInFirstDocument (Microsoft.VisualStudio.Debugger.Symbols.DkmModule module);
abstract member GetFirstMethodInFirstDocument : Microsoft.VisualStudio.Debugger.Symbols.DkmModule -> Microsoft.VisualStudio.Debugger.Clr.DkmClrMethodId
Public Function GetFirstMethodInFirstDocument (module As DkmModule) As DkmClrMethodId

Parameters

module
DkmModule

[In] The DkmModule class represents a code bundle (ex: dll or exe) which is or once was loaded into one or more processes. The DkmModule class is the central object to the symbol APIs, and is 1:1 with the symbol handler's notation of what is loaded. If a code bundle loads into three different processes (or the same process but with three different base addresses or three different app domains) but the symbol handler thinks of all of these as being identical, there will be only one module object.

Returns

[Out] DkmClrMethodId is a token/version pair which is used to uniquely identify the symbol store's understanding of a particular CLR method within a module.

Applies to