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

Used to open "forwarded-tcpip" channel type
Inheritance: Renci.SshNet.Messages.Connection.ChannelOpenInfo
Mostrar archivo Open project: sshnet/SSH.NET Class Usage Examples

Public Methods

Method Description
ForwardedTcpipChannelInfo ( byte data ) : System

Initializes a new instance of the ForwardedTcpipChannelInfo class from the specified data.

ForwardedTcpipChannelInfo ( string connectedAddress, uint connectedPort, string originatorAddress, uint originatorPort ) : System

Initializes a new ForwardedTcpipChannelInfo instance with the specified connector address and port, and originator address and port.

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.

Method Details

ForwardedTcpipChannelInfo() public method

Initializes a new instance of the ForwardedTcpipChannelInfo class from the specified data.
is null.
public ForwardedTcpipChannelInfo ( byte data ) : System
data byte
return System

ForwardedTcpipChannelInfo() public method

Initializes a new ForwardedTcpipChannelInfo instance with the specified connector address and port, and originator address and port.
public ForwardedTcpipChannelInfo ( string connectedAddress, uint connectedPort, string originatorAddress, uint originatorPort ) : System
connectedAddress string
connectedPort uint
originatorAddress string
originatorPort uint
return System

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