IDkmSourceLinkQuery.GetSourceLinkInfo(DkmModule, String) Method

Definition

Returns SourceLink information from the symbol file for the requested file path.

public:
 Microsoft::VisualStudio::Debugger::Symbols::DkmSourceLinkInfo ^ GetSourceLinkInfo(Microsoft::VisualStudio::Debugger::Symbols::DkmModule ^ module, System::String ^ filePath);
public Microsoft.VisualStudio.Debugger.Symbols.DkmSourceLinkInfo GetSourceLinkInfo (Microsoft.VisualStudio.Debugger.Symbols.DkmModule module, string filePath);
abstract member GetSourceLinkInfo : Microsoft.VisualStudio.Debugger.Symbols.DkmModule * string -> Microsoft.VisualStudio.Debugger.Symbols.DkmSourceLinkInfo
Public Function GetSourceLinkInfo (module As DkmModule, filePath As String) As DkmSourceLinkInfo

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.

filePath
String

[In] The absolute file path of a source file as it appears in the Symbol File.

Returns

[Out] The SourceLink information for the requested FilePath.

Applies to