C# Class Renci.SshNet.Messages.Connection.PseudoTerminalRequestInfo

Represents "pty-req" type channel request information
Inheritance: RequestInfo
Datei anzeigen Open project: sshnet/SSH.NET Class Usage Examples

Public Methods

Method Description
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.

Protected Methods

Method Description
SaveData ( ) : void

Called when type specific data need to be saved.

Method Details

PseudoTerminalRequestInfo() public method

Initializes a new instance of the PseudoTerminalRequestInfo class.
public PseudoTerminalRequestInfo ( ) : Renci.SshNet.Common
return Renci.SshNet.Common

PseudoTerminalRequestInfo() public method

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.
return Renci.SshNet.Common

SaveData() protected method

Called when type specific data need to be saved.
protected SaveData ( ) : void
return void