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

Inheritance: ChannelMessage
ファイルを表示 Open project: sshnet/SSH.NET Class Usage Examples

Public Methods

Method Description
ChannelOpenConfirmationMessage ( )

Initializes a new instance of the ChannelOpenConfirmationMessage class.

ChannelOpenConfirmationMessage ( uint localChannelNumber, uint initialWindowSize, uint maximumPacketSize, uint remoteChannelNumber )

Initializes a new instance of the ChannelOpenConfirmationMessage class.

Protected Methods

Method Description
LoadData ( ) : void

Called when type specific data need to be loaded.

SaveData ( ) : void

Called when type specific data need to be saved.

Private Methods

Method Description
Process ( Session session ) : void

Method Details

ChannelOpenConfirmationMessage() public method

Initializes a new instance of the ChannelOpenConfirmationMessage class.

ChannelOpenConfirmationMessage() public method

Initializes a new instance of the ChannelOpenConfirmationMessage class.
public ChannelOpenConfirmationMessage ( uint localChannelNumber, uint initialWindowSize, uint maximumPacketSize, uint remoteChannelNumber )
localChannelNumber uint The local channel number.
initialWindowSize uint Initial size of the window.
maximumPacketSize uint Maximum size of the packet.
remoteChannelNumber uint The remote channel number.

LoadData() protected method

Called when type specific data need to be loaded.
protected LoadData ( ) : void
return void

SaveData() protected method

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