Share via


DkmModuleInstance.TryLoadSymbolsCallback177 Method

Definition

Overloads

TryLoadSymbolsCallback177(DkmSymbolLoadFlags)

Called to initiate loading of locally present symbols for DkmModuleInstances whose symbols were not found when the module loaded.

Location constraint: This can be called from the client or the server. The server implementation of this is a cache to prevent unnecessary network calls. The client goes directly to the 'real' implementation which also ensures that reattempts return early.

This API was introduced in Visual Studio 17 Update 7 (DkmApiVersion.VS17Update7).

TryLoadSymbolsCallback177(DkmWorkList, DkmSymbolLoadFlags, DkmCompletionRoutine<DkmTryLoadSymbolsCallback177AsyncResult>)

Called to initiate loading of locally present symbols for DkmModuleInstances whose symbols were not found when the module loaded.

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: This can be called from the client or the server. The server implementation of this is a cache to prevent unnecessary network calls. The client goes directly to the 'real' implementation which also ensures that reattempts return early.

This API was introduced in Visual Studio 17 Update 7 (DkmApiVersion.VS17Update7).

TryLoadSymbolsCallback177(DkmSymbolLoadFlags)

Called to initiate loading of locally present symbols for DkmModuleInstances whose symbols were not found when the module loaded.

Location constraint: This can be called from the client or the server. The server implementation of this is a cache to prevent unnecessary network calls. The client goes directly to the 'real' implementation which also ensures that reattempts return early.

This API was introduced in Visual Studio 17 Update 7 (DkmApiVersion.VS17Update7).

public void TryLoadSymbolsCallback177 (Microsoft.VisualStudio.Debugger.Symbols.DkmSymbolLoadFlags Flags);
member this.TryLoadSymbolsCallback177 : Microsoft.VisualStudio.Debugger.Symbols.DkmSymbolLoadFlags -> unit
Public Sub TryLoadSymbolsCallback177 (Flags As DkmSymbolLoadFlags)

Parameters

Flags
DkmSymbolLoadFlags

[In] Flags used to determine behavior during symbol load.

Applies to

TryLoadSymbolsCallback177(DkmWorkList, DkmSymbolLoadFlags, DkmCompletionRoutine<DkmTryLoadSymbolsCallback177AsyncResult>)

Called to initiate loading of locally present symbols for DkmModuleInstances whose symbols were not found when the module loaded.

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: This can be called from the client or the server. The server implementation of this is a cache to prevent unnecessary network calls. The client goes directly to the 'real' implementation which also ensures that reattempts return early.

This API was introduced in Visual Studio 17 Update 7 (DkmApiVersion.VS17Update7).

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

Parameters

WorkList
DkmWorkList

WorkList to append the new work item to.

Flags
DkmSymbolLoadFlags

[In] Flags used to determine behavior during symbol load.

CompletionRoutine
DkmCompletionRoutine<DkmTryLoadSymbolsCallback177AsyncResult>

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