<PackageReference Include="SSH.NET" Version="2016.0.0" />

PseudoTerminalRequestInfo

Represents "pty-req" type channel request information
public const string Name = "pty-req"

Channel request name

public uint Columns { get; set; }

Gets or sets the terminal width in columns (e.g., 80).

public string EnvironmentVariable { get; set; }

Gets or sets the value of the TERM environment variable (e.g., vt100).

public uint PixelHeight { get; set; }

Gets or sets the terminal height in pixels (e.g., 480).

public uint PixelWidth { get; set; }

Gets or sets the terminal width in pixels (e.g., 640).

public uint Rows { get; set; }

Gets or sets the terminal width in rows (e.g., 24).

public IDictionary<TerminalModes, uint> TerminalModeValues { get; set; }

Gets or sets the terminal mode.

Initializes a new instance of the PseudoTerminalRequestInfo class.

public PseudoTerminalRequestInfo(string environmentVariable, uint columns, uint rows, uint width, uint height, IDictionary<TerminalModes, uint> terminalModeValues)

Initializes a new instance of the PseudoTerminalRequestInfo class.