DkmClrInstructionSymbol.GetAsyncKickoffMethod Method

Definition

Overloads

GetAsyncKickoffMethod()

If the current method is an async method then return the kickoff method for this async method.

GetAsyncKickoffMethod(DkmWorkList, DkmCompletionRoutine<DkmGetAsyncKickoffMethodAsyncResult>)

If the current method is an async method then return the kickoff method for this async 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.

GetAsyncKickoffMethod()

If the current method is an async method then return the kickoff method for this async method.

public:
 int GetAsyncKickoffMethod();
public:
 int GetAsyncKickoffMethod();
int GetAsyncKickoffMethod();
public int GetAsyncKickoffMethod ();
member this.GetAsyncKickoffMethod : unit -> int
Public Function GetAsyncKickoffMethod () As Integer

Returns

[Out] Kickoff method token.

Applies to

GetAsyncKickoffMethod(DkmWorkList, DkmCompletionRoutine<DkmGetAsyncKickoffMethodAsyncResult>)

If the current method is an async method then return the kickoff method for this async 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 GetAsyncKickoffMethod(Microsoft::VisualStudio::Debugger::DkmWorkList ^ WorkList, Microsoft::VisualStudio::Debugger::DkmCompletionRoutine<Microsoft::VisualStudio::Debugger::Clr::DkmGetAsyncKickoffMethodAsyncResult> ^ CompletionRoutine);
public void GetAsyncKickoffMethod (Microsoft.VisualStudio.Debugger.DkmWorkList WorkList, Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.Clr.DkmGetAsyncKickoffMethodAsyncResult> CompletionRoutine);
member this.GetAsyncKickoffMethod : Microsoft.VisualStudio.Debugger.DkmWorkList * Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.Clr.DkmGetAsyncKickoffMethodAsyncResult> -> unit
Public Sub GetAsyncKickoffMethod (WorkList As DkmWorkList, CompletionRoutine As DkmCompletionRoutine(Of DkmGetAsyncKickoffMethodAsyncResult))

Parameters

WorkList
DkmWorkList

WorkList to append the new work item to.

CompletionRoutine
DkmCompletionRoutine<DkmGetAsyncKickoffMethodAsyncResult>

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