DkmWorkList.BeginExecution Method

Definition

Overloads

BeginExecution()

Begin execution of the items in this work list. This API will return immediately and completion routines are fired to return results. Callbacks will fire as results complete (unordered).

This method may only be called by the component which created the object.

BeginExecution(DkmWorkListExecutionThread)

Begin execution of the items in this work list. This API will return immediately and completion routines are fired to return results. Callbacks will fire as results complete (unordered).

This method may only be called by the component which created the object.

This API was introduced in Visual Studio 15 Update 5 (DkmApiVersion.VS15Update5).

BeginExecution(DkmWorkListExecutionThread, DkmWorkListPriority)

Begin execution of the items in this work list. This API will return immediately and completion routines are fired to return results. Callbacks will fire as results complete (unordered).

This method may only be called by the component which created the object.

This API was introduced in Visual Studio 15 Update 8 (DkmApiVersion.VS15Update8).

BeginExecution()

Begin execution of the items in this work list. This API will return immediately and completion routines are fired to return results. Callbacks will fire as results complete (unordered).

This method may only be called by the component which created the object.

public:
 void BeginExecution();
public:
 void BeginExecution();
void BeginExecution();
public void BeginExecution ();
member this.BeginExecution : unit -> unit
Public Sub BeginExecution ()

Applies to

BeginExecution(DkmWorkListExecutionThread)

Begin execution of the items in this work list. This API will return immediately and completion routines are fired to return results. Callbacks will fire as results complete (unordered).

This method may only be called by the component which created the object.

This API was introduced in Visual Studio 15 Update 5 (DkmApiVersion.VS15Update5).

public:
 void BeginExecution(Microsoft::VisualStudio::Debugger::DkmWorkListExecutionThread executionThread);
public void BeginExecution (Microsoft.VisualStudio.Debugger.DkmWorkListExecutionThread executionThread);
member this.BeginExecution : Microsoft.VisualStudio.Debugger.DkmWorkListExecutionThread -> unit
Public Sub BeginExecution (executionThread As DkmWorkListExecutionThread)

Parameters

executionThread
DkmWorkListExecutionThread

Indicates where the items in the work list should execute.

Applies to

BeginExecution(DkmWorkListExecutionThread, DkmWorkListPriority)

Begin execution of the items in this work list. This API will return immediately and completion routines are fired to return results. Callbacks will fire as results complete (unordered).

This method may only be called by the component which created the object.

This API was introduced in Visual Studio 15 Update 8 (DkmApiVersion.VS15Update8).

public:
 void BeginExecution(Microsoft::VisualStudio::Debugger::DkmWorkListExecutionThread executionThread, Microsoft::VisualStudio::Debugger::DkmWorkListPriority priority);
public void BeginExecution (Microsoft.VisualStudio.Debugger.DkmWorkListExecutionThread executionThread, Microsoft.VisualStudio.Debugger.DkmWorkListPriority priority);
member this.BeginExecution : Microsoft.VisualStudio.Debugger.DkmWorkListExecutionThread * Microsoft.VisualStudio.Debugger.DkmWorkListPriority -> unit
Public Sub BeginExecution (executionThread As DkmWorkListExecutionThread, priority As DkmWorkListPriority)

Parameters

executionThread
DkmWorkListExecutionThread

Indicates where the items in the work list should execute.

priority
DkmWorkListPriority

Indicates the worklist priority.

Applies to