C# Класс Renci.SshNet.Messages.Connection.PseudoTerminalRequestInfo

Represents "pty-req" type channel request information
Наследование: RequestInfo
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
PseudoTerminalRequestInfo ( ) : Renci.SshNet.Common

Initializes a new instance of the PseudoTerminalRequestInfo class.

PseudoTerminalRequestInfo ( string environmentVariable, uint columns, uint rows, uint width, uint height, uint>.IDictionary terminalModeValues ) : Renci.SshNet.Common

Initializes a new instance of the PseudoTerminalRequestInfo class.

The TERM environment variable contains an identifier for the text window's capabilities. You can get a detailed list of these cababilities by using the ‘infocmp’ command.

The column/row dimensions override the pixel dimensions(when nonzero). Pixel dimensions refer to the drawable area of the window.

Защищенные методы

Метод Описание
SaveData ( ) : void

Called when type specific data need to be saved.

Описание методов

PseudoTerminalRequestInfo() публичный Метод

Initializes a new instance of the PseudoTerminalRequestInfo class.
public PseudoTerminalRequestInfo ( ) : Renci.SshNet.Common
Результат Renci.SshNet.Common

PseudoTerminalRequestInfo() публичный Метод

Initializes a new instance of the PseudoTerminalRequestInfo class.

The TERM environment variable contains an identifier for the text window's capabilities. You can get a detailed list of these cababilities by using the ‘infocmp’ command.

The column/row dimensions override the pixel dimensions(when nonzero). Pixel dimensions refer to the drawable area of the window.

public PseudoTerminalRequestInfo ( string environmentVariable, uint columns, uint rows, uint width, uint height, uint>.IDictionary terminalModeValues ) : Renci.SshNet.Common
environmentVariable string The TERM environment variable which a identifier for the text window’s capabilities.
columns uint The terminal width in columns.
rows uint The terminal width in rows.
width uint The terminal height in pixels.
height uint The terminal height in pixels.
terminalModeValues uint>.IDictionary The terminal mode values.
Результат Renci.SshNet.Common

SaveData() защищенный Метод

Called when type specific data need to be saved.
protected SaveData ( ) : void
Результат void