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

Inheritance: ChannelMessage
Mostrar archivo Open project: sshnet/SSH.NET Class Usage Examples

Public Methods

Method Description
ChannelDataMessage ( ) : System

Initializes a new instance of the ChannelDataMessage class.

ChannelDataMessage ( uint localChannelNumber, byte data ) : System

Initializes a new instance of the ChannelDataMessage class.

ChannelDataMessage ( uint localChannelNumber, byte data, int offset, int size ) : System

Initializes a new instance of the ChannelDataMessage class.

Protected Methods

Method Description
LoadData ( ) : void

Loads the data.

SaveData ( ) : void

Saves the data.

Private Methods

Method Description
Process ( Session session ) : void

Method Details

ChannelDataMessage() public method

Initializes a new instance of the ChannelDataMessage class.
public ChannelDataMessage ( ) : System
return System

ChannelDataMessage() public method

Initializes a new instance of the ChannelDataMessage class.
public ChannelDataMessage ( uint localChannelNumber, byte data ) : System
localChannelNumber uint The local channel number.
data byte Message data.
return System

ChannelDataMessage() public method

Initializes a new instance of the ChannelDataMessage class.
public ChannelDataMessage ( uint localChannelNumber, byte data, int offset, int size ) : System
localChannelNumber uint The local channel number.
data byte The message data.
offset int The zero-based byte offset in at which to begin reading or writing data from.
size int The number of bytes of to read or write.
return System

LoadData() protected method

Loads the data.
protected LoadData ( ) : void
return void

SaveData() protected method

Saves the data.
protected SaveData ( ) : void
return void