DkmClrInstructionSymbol.GetAllAwaitExpressionInfoForStatement Method

Definition

Overloads

GetAllAwaitExpressionInfoForStatement()

Gets the yield and resume points contained within the statement surrounding the given instruction symbol.

GetAllAwaitExpressionInfoForStatement(DkmWorkList, DkmCompletionRoutine<DkmGetAllAwaitExpressionInfoForStatementAsyncResult>)

Gets the yield and resume points contained within the statement surrounding the given instruction symbol.

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.

GetAllAwaitExpressionInfoForStatement()

Gets the yield and resume points contained within the statement surrounding the given instruction symbol.

public:
 cli::array <Microsoft::VisualStudio::Debugger::Clr::DkmClrAwaitExpressionInfo> ^ GetAllAwaitExpressionInfoForStatement();
public:
 Platform::Array <Microsoft::VisualStudio::Debugger::Clr::DkmClrAwaitExpressionInfo> ^ GetAllAwaitExpressionInfoForStatement();
std::Array <Microsoft::VisualStudio::Debugger::Clr::DkmClrAwaitExpressionInfo> GetAllAwaitExpressionInfoForStatement();
public Microsoft.VisualStudio.Debugger.Clr.DkmClrAwaitExpressionInfo[] GetAllAwaitExpressionInfoForStatement ();
member this.GetAllAwaitExpressionInfoForStatement : unit -> Microsoft.VisualStudio.Debugger.Clr.DkmClrAwaitExpressionInfo[]
Public Function GetAllAwaitExpressionInfoForStatement () As DkmClrAwaitExpressionInfo()

Returns

[Out] An array of the yield and resume points for the statement.

Applies to

GetAllAwaitExpressionInfoForStatement(DkmWorkList, DkmCompletionRoutine<DkmGetAllAwaitExpressionInfoForStatementAsyncResult>)

Gets the yield and resume points contained within the statement surrounding the given instruction symbol.

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

Parameters

WorkList
DkmWorkList

WorkList to append the new work item to.

CompletionRoutine
DkmCompletionRoutine<DkmGetAllAwaitExpressionInfoForStatementAsyncResult>

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