DkmClrModuleInstance.TryLoadDecompiledSymbols Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
TryLoadDecompiledSymbols() |
Attempts to load cached decompiled symbols for the module. Location constraint: API must be called from an IDE component (component level > 100,000). This API was introduced in Visual Studio 17 Update 5 (DkmApiVersion.VS17Update5). |
TryLoadDecompiledSymbols(DkmWorkList, DkmCompletionRoutine<DkmTryLoadDecompiledSymbolsAsyncResult>) |
Attempts to load cached decompiled symbols for the module. 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). This API was introduced in Visual Studio 17 Update 5 (DkmApiVersion.VS17Update5). |
TryLoadDecompiledSymbols()
Attempts to load cached decompiled symbols for the module.
Location constraint: API must be called from an IDE component (component level > 100,000).
This API was introduced in Visual Studio 17 Update 5 (DkmApiVersion.VS17Update5).
public void TryLoadDecompiledSymbols ();
member this.TryLoadDecompiledSymbols : unit -> unit
Public Sub TryLoadDecompiledSymbols ()
Applies to
TryLoadDecompiledSymbols(DkmWorkList, DkmCompletionRoutine<DkmTryLoadDecompiledSymbolsAsyncResult>)
Attempts to load cached decompiled symbols for the module.
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).
This API was introduced in Visual Studio 17 Update 5 (DkmApiVersion.VS17Update5).
public void TryLoadDecompiledSymbols (Microsoft.VisualStudio.Debugger.DkmWorkList WorkList, Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.Clr.DkmTryLoadDecompiledSymbolsAsyncResult> CompletionRoutine);
member this.TryLoadDecompiledSymbols : Microsoft.VisualStudio.Debugger.DkmWorkList * Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.Clr.DkmTryLoadDecompiledSymbolsAsyncResult> -> unit
Public Sub TryLoadDecompiledSymbols (WorkList As DkmWorkList, CompletionRoutine As DkmCompletionRoutine(Of DkmTryLoadDecompiledSymbolsAsyncResult))
Parameters
- WorkList
- DkmWorkList
WorkList to append the new work item to.
- CompletionRoutine
- DkmCompletionRoutine<DkmTryLoadDecompiledSymbolsAsyncResult>
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.