IDkmManagedAsyncTaskDecoder.GetContinuationFramesFromTaskObject Method

Definition

Returns a list of frames that will execute when this task completes. The order that the frames will execute in is arbitrary and might not be the order returned here. Only frames that will execute as a direct result of this task are included, not frames that will execute as a result of another task that will execute after this task completes.

public:
 void GetContinuationFramesFromTaskObject(Microsoft::VisualStudio::Debugger::CallStack::DkmAsyncStackWalkContext ^ asyncStackWalkContext, Microsoft::VisualStudio::Debugger::DkmWorkList ^ workList, Microsoft::VisualStudio::Debugger::DkmThread ^ thread, Microsoft::VisualStudio::CorDebugInterop::ICorDebugHandleValue ^ taskObject, Microsoft::VisualStudio::Debugger::Clr::DkmClrAppDomain ^ taskAppDomain, Microsoft::VisualStudio::Debugger::DkmCompletionRoutine<Microsoft::VisualStudio::Debugger::CallStack::DkmGetContinuationFramesFromTaskObjectAsyncResult> ^ completionRoutine);
public void GetContinuationFramesFromTaskObject (Microsoft.VisualStudio.Debugger.CallStack.DkmAsyncStackWalkContext asyncStackWalkContext, Microsoft.VisualStudio.Debugger.DkmWorkList workList, Microsoft.VisualStudio.Debugger.DkmThread thread, Microsoft.VisualStudio.CorDebugInterop.ICorDebugHandleValue taskObject, Microsoft.VisualStudio.Debugger.Clr.DkmClrAppDomain taskAppDomain, Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.CallStack.DkmGetContinuationFramesFromTaskObjectAsyncResult> completionRoutine);
abstract member GetContinuationFramesFromTaskObject : Microsoft.VisualStudio.Debugger.CallStack.DkmAsyncStackWalkContext * Microsoft.VisualStudio.Debugger.DkmWorkList * Microsoft.VisualStudio.Debugger.DkmThread * Microsoft.VisualStudio.CorDebugInterop.ICorDebugHandleValue * Microsoft.VisualStudio.Debugger.Clr.DkmClrAppDomain * Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.CallStack.DkmGetContinuationFramesFromTaskObjectAsyncResult> -> unit
Public Sub GetContinuationFramesFromTaskObject (asyncStackWalkContext As DkmAsyncStackWalkContext, workList As DkmWorkList, thread As DkmThread, taskObject As ICorDebugHandleValue, taskAppDomain As DkmClrAppDomain, completionRoutine As DkmCompletionRoutine(Of DkmGetContinuationFramesFromTaskObjectAsyncResult))

Parameters

asyncStackWalkContext
DkmAsyncStackWalkContext

[In] Provides a context for walking async return stacks and task creation stacks.

workList
DkmWorkList

WorkList which is currently being processed. This value can be used to check for cancelation or to append additional work. New work items will not begin executing until after this function returns.

thread
DkmThread

[In] The thread that the resultant frames should belong to.

taskObject
ICorDebugHandleValue

[In] The task object that we are retrieving continuation frames from.

taskAppDomain
DkmClrAppDomain

[In] The AppDomain of the Task object.

completionRoutine
DkmCompletionRoutine<DkmGetContinuationFramesFromTaskObjectAsyncResult>

Routine to fire when the request is complete. This will be implicitly fired if the implementation returns failure from this interface method. The implementation must fire this method in all other scenarios.

Applies to