C# 클래스 Renci.SshNet.Messages.Connection.PseudoTerminalRequestInfo

Represents "pty-req" type channel request information
상속: RequestInfo
파일 보기 프로젝트 열기: sshnet/SSH.NET 1 사용 예제들

공개 메소드들

메소드 설명
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