DkmTerminalStartInfo Class

Definition

Contains information required to start a terminal (console).

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

[System.Runtime.InteropServices.Guid("bc359ff1-eb06-badf-f09e-e08d8010fafb")]
public class DkmTerminalStartInfo
[<System.Runtime.InteropServices.Guid("bc359ff1-eb06-badf-f09e-e08d8010fafb")>]
type DkmTerminalStartInfo = class
Public Class DkmTerminalStartInfo
Inheritance
DkmTerminalStartInfo
Attributes

Properties

Arguments

The arguments to pass to the executable on the command line.

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

Connection

This represents a connection between the monitor and the IDE. It can either be a local connection if the monitor is running in the same process as the IDE, or it can be a remote connection. In the monitor process, there is only one connection.

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

ExecutablePath

The path to the executable file to be launched into the terminal. This should be a full path.

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

Title

The initial window title of the terminal.

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

Methods

Create(DkmTransportConnection, String, String, ReadOnlyCollection<String>)

Create a new DkmTerminalStartInfo object instance.

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

Start(DkmWorkList, DkmCompletionRoutine<DkmTerminalStartAsyncResult>)

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).

Applies to