IDkmAsyncTaskDecoder.GetTaskCreationStack Method

Definition

Gets the logged creation stack of this task.

public:
 void GetTaskCreationStack(Microsoft::VisualStudio::Debugger::CallStack::DkmAsyncStackWalkContext ^ asyncStackWalkContext, Microsoft::VisualStudio::Debugger::DkmWorkList ^ workList, Microsoft::VisualStudio::Debugger::DkmThread ^ thread, Microsoft::VisualStudio::Debugger::DkmCompletionRoutine<Microsoft::VisualStudio::Debugger::CallStack::DkmGetTaskCreationStackAsyncResult> ^ completionRoutine);
public void GetTaskCreationStack (Microsoft.VisualStudio.Debugger.CallStack.DkmAsyncStackWalkContext asyncStackWalkContext, Microsoft.VisualStudio.Debugger.DkmWorkList workList, Microsoft.VisualStudio.Debugger.DkmThread thread, Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.CallStack.DkmGetTaskCreationStackAsyncResult> completionRoutine);
abstract member GetTaskCreationStack : Microsoft.VisualStudio.Debugger.CallStack.DkmAsyncStackWalkContext * Microsoft.VisualStudio.Debugger.DkmWorkList * Microsoft.VisualStudio.Debugger.DkmThread * Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.CallStack.DkmGetTaskCreationStackAsyncResult> -> unit
Public Sub GetTaskCreationStack (asyncStackWalkContext As DkmAsyncStackWalkContext, workList As DkmWorkList, thread As DkmThread, completionRoutine As DkmCompletionRoutine(Of DkmGetTaskCreationStackAsyncResult))

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.

completionRoutine
DkmCompletionRoutine<DkmGetTaskCreationStackAsyncResult>

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