Share via


DkmModule.GetSymbolFilePath Method

Definition

Overloads

GetSymbolFilePath()

Returns the path to the symbol file which backs a DkmModule object.

Location constraint: API must be called from an IDE component (component level > 100,000).

GetSymbolFilePath(DkmWorkList, DkmCompletionRoutine<DkmGetSymbolFilePathAsyncResult>)

Returns the path to the symbol file which backs a DkmModule object.

This method will append a new work item to the specified work list, and return once the work item has been appended. The actual processing of the work item is asynchronous. The caller will be notified that the request is complete through the completion routine.

Location constraint: API must be called from an IDE component (component level > 100,000).

GetSymbolFilePath()

Returns the path to the symbol file which backs a DkmModule object.

Location constraint: API must be called from an IDE component (component level > 100,000).

public:
 System::String ^ GetSymbolFilePath();
public:
 Platform::String ^ GetSymbolFilePath();
std::wstring GetSymbolFilePath();
public string GetSymbolFilePath ();
member this.GetSymbolFilePath : unit -> string
Public Function GetSymbolFilePath () As String

Returns

[Out] Full path to the symbol file (ex: c:\myproj\bin\debug\myproj.pdb).

Applies to

GetSymbolFilePath(DkmWorkList, DkmCompletionRoutine<DkmGetSymbolFilePathAsyncResult>)

Returns the path to the symbol file which backs a DkmModule object.

This method will append a new work item to the specified work list, and return once the work item has been appended. The actual processing of the work item is asynchronous. The caller will be notified that the request is complete through the completion routine.

Location constraint: API must be called from an IDE component (component level > 100,000).

public void GetSymbolFilePath (Microsoft.VisualStudio.Debugger.DkmWorkList WorkList, Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.Symbols.DkmGetSymbolFilePathAsyncResult> CompletionRoutine);
member this.GetSymbolFilePath : Microsoft.VisualStudio.Debugger.DkmWorkList * Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.Symbols.DkmGetSymbolFilePathAsyncResult> -> unit
Public Sub GetSymbolFilePath (WorkList As DkmWorkList, CompletionRoutine As DkmCompletionRoutine(Of DkmGetSymbolFilePathAsyncResult))

Parameters

WorkList
DkmWorkList

WorkList to append the new work item to.

CompletionRoutine
DkmCompletionRoutine<DkmGetSymbolFilePathAsyncResult>

Routine to fire when the request is complete. If the request is successfully appended to the work list, this will always fire (including when the operation is canceled). This will never fire if appending the work item fails.

Applies to