DkmClrInstructionSymbol.GetNextAwaitExpressionInfo Method

Definition

Overloads

GetNextAwaitExpressionInfo()

Get the yield and resume information of the next await expression.

GetNextAwaitExpressionInfo(DkmWorkList, DkmCompletionRoutine<DkmGetNextAwaitExpressionInfoAsyncResult>)

Get the yield and resume information of the next await expression.

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.

GetNextAwaitExpressionInfo()

Get the yield and resume information of the next await expression.

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

Returns

[Out] Next await expression info.

Applies to

GetNextAwaitExpressionInfo(DkmWorkList, DkmCompletionRoutine<DkmGetNextAwaitExpressionInfoAsyncResult>)

Get the yield and resume information of the next await expression.

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 GetNextAwaitExpressionInfo(Microsoft::VisualStudio::Debugger::DkmWorkList ^ WorkList, Microsoft::VisualStudio::Debugger::DkmCompletionRoutine<Microsoft::VisualStudio::Debugger::Clr::DkmGetNextAwaitExpressionInfoAsyncResult> ^ CompletionRoutine);
public void GetNextAwaitExpressionInfo (Microsoft.VisualStudio.Debugger.DkmWorkList WorkList, Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.Clr.DkmGetNextAwaitExpressionInfoAsyncResult> CompletionRoutine);
member this.GetNextAwaitExpressionInfo : Microsoft.VisualStudio.Debugger.DkmWorkList * Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.Clr.DkmGetNextAwaitExpressionInfoAsyncResult> -> unit
Public Sub GetNextAwaitExpressionInfo (WorkList As DkmWorkList, CompletionRoutine As DkmCompletionRoutine(Of DkmGetNextAwaitExpressionInfoAsyncResult))

Parameters

WorkList
DkmWorkList

WorkList to append the new work item to.

CompletionRoutine
DkmCompletionRoutine<DkmGetNextAwaitExpressionInfoAsyncResult>

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