Share via


DkmTerminalStartInfo.Start Method

Definition

Launches the specified terminal program.

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.

This API was introduced in Visual Studio 16 Update 9 (DkmApiVersion.VS16Update9).

public void Start (Microsoft.VisualStudio.Debugger.DkmWorkList WorkList, Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.DefaultPort.DkmTerminalStartAsyncResult> CompletionRoutine);
member this.Start : Microsoft.VisualStudio.Debugger.DkmWorkList * Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.DefaultPort.DkmTerminalStartAsyncResult> -> unit
Public Sub Start (WorkList As DkmWorkList, CompletionRoutine As DkmCompletionRoutine(Of DkmTerminalStartAsyncResult))

Parameters

WorkList
DkmWorkList

WorkList to append the new work item to.

CompletionRoutine
DkmCompletionRoutine<DkmTerminalStartAsyncResult>

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