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

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

Public Methods

Method Description
ChannelOpenFailureMessage ( )

Initializes a new instance of the ChannelOpenFailureMessage class.

ChannelOpenFailureMessage ( uint localChannelNumber, string description, uint reasonCode )

Initializes a new instance of the ChannelOpenFailureMessage class.

ChannelOpenFailureMessage ( uint localChannelNumber, string description, uint reasonCode, string language )

Initializes a new instance of the ChannelOpenFailureMessage 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

ChannelOpenFailureMessage() public method

Initializes a new instance of the ChannelOpenFailureMessage class.

ChannelOpenFailureMessage() public method

Initializes a new instance of the ChannelOpenFailureMessage class.
public ChannelOpenFailureMessage ( uint localChannelNumber, string description, uint reasonCode )
localChannelNumber uint The local channel number.
description string The description.
reasonCode uint The reason code.

ChannelOpenFailureMessage() public method

Initializes a new instance of the ChannelOpenFailureMessage class.
public ChannelOpenFailureMessage ( uint localChannelNumber, string description, uint reasonCode, string language )
localChannelNumber uint The local channel number.
description string The description.
reasonCode uint The reason code.
language string The language (RFC3066).

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