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

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

Méthodes publiques

Méthode 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.

Méthodes protégées

Méthode Description
SaveData ( ) : void

Called when type specific data need to be saved.

Method Details

PseudoTerminalRequestInfo() public méthode

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

PseudoTerminalRequestInfo() public méthode

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.
Résultat Renci.SshNet.Common

SaveData() protected méthode

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