DkmClrInstructionSymbol.GetAsyncMethodLocation Method

Definition

Overloads

GetAsyncMethodLocation()

Gets the location of the instruction symbol in it's method.

GetAsyncMethodLocation(DkmWorkList, DkmCompletionRoutine<DkmGetAsyncMethodLocationAsyncResult>)

Gets the location of the instruction symbol in it's method.

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.

GetAsyncMethodLocation()

Gets the location of the instruction symbol in it's method.

public:
 Microsoft::VisualStudio::Debugger::Clr::DkmClrAsyncMethodLocation GetAsyncMethodLocation();
public:
 Microsoft::VisualStudio::Debugger::Clr::DkmClrAsyncMethodLocation GetAsyncMethodLocation();
Microsoft::VisualStudio::Debugger::Clr::DkmClrAsyncMethodLocation GetAsyncMethodLocation();
public Microsoft.VisualStudio.Debugger.Clr.DkmClrAsyncMethodLocation GetAsyncMethodLocation ();
member this.GetAsyncMethodLocation : unit -> Microsoft.VisualStudio.Debugger.Clr.DkmClrAsyncMethodLocation
Public Function GetAsyncMethodLocation () As DkmClrAsyncMethodLocation

Returns

[Out] The location of the given instruction.

Applies to

GetAsyncMethodLocation(DkmWorkList, DkmCompletionRoutine<DkmGetAsyncMethodLocationAsyncResult>)

Gets the location of the instruction symbol in it's method.

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.

public:
 void GetAsyncMethodLocation(Microsoft::VisualStudio::Debugger::DkmWorkList ^ WorkList, Microsoft::VisualStudio::Debugger::DkmCompletionRoutine<Microsoft::VisualStudio::Debugger::Clr::DkmGetAsyncMethodLocationAsyncResult> ^ CompletionRoutine);
public void GetAsyncMethodLocation (Microsoft.VisualStudio.Debugger.DkmWorkList WorkList, Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.Clr.DkmGetAsyncMethodLocationAsyncResult> CompletionRoutine);
member this.GetAsyncMethodLocation : Microsoft.VisualStudio.Debugger.DkmWorkList * Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.Clr.DkmGetAsyncMethodLocationAsyncResult> -> unit
Public Sub GetAsyncMethodLocation (WorkList As DkmWorkList, CompletionRoutine As DkmCompletionRoutine(Of DkmGetAsyncMethodLocationAsyncResult))

Parameters

WorkList
DkmWorkList

WorkList to append the new work item to.

CompletionRoutine
DkmCompletionRoutine<DkmGetAsyncMethodLocationAsyncResult>

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