Class ChannelOpenConfirmationMessage
- Namespace
- Renci.SshNet.Messages.Connection
- Assembly
- Renci.SshNet.dll
Represents SSH_MSG_CHANNEL_OPEN_CONFIRMATION message.
public class ChannelOpenConfirmationMessage : ChannelMessage
- Inheritance
-
ChannelOpenConfirmationMessage
- Inherited Members
Constructors
ChannelOpenConfirmationMessage()
Initializes a new instance of the ChannelOpenConfirmationMessage class.
public ChannelOpenConfirmationMessage()
ChannelOpenConfirmationMessage(uint, uint, uint, uint)
Initializes a new instance of the ChannelOpenConfirmationMessage class.
public ChannelOpenConfirmationMessage(uint localChannelNumber, uint initialWindowSize, uint maximumPacketSize, uint remoteChannelNumber)
Parameters
localChannelNumber
uintThe local channel number.
initialWindowSize
uintInitial size of the window.
maximumPacketSize
uintMaximum size of the packet.
remoteChannelNumber
uintThe remote channel number.
Properties
BufferCapacity
Gets the size of the message in bytes.
protected override int BufferCapacity { get; }
Property Value
- int
The size of the messages in bytes.
InitialWindowSize
Gets the initial size of the window.
public uint InitialWindowSize { get; }
Property Value
- uint
The initial size of the window.
MaximumPacketSize
Gets the maximum size of the packet.
public uint MaximumPacketSize { get; }
Property Value
- uint
The maximum size of the packet.
MessageName
public override string MessageName { get; }
Property Value
MessageNumber
public override byte MessageNumber { get; }
Property Value
RemoteChannelNumber
Gets the remote channel number.
public uint RemoteChannelNumber { get; }
Property Value
Methods
LoadData()
Called when type specific data need to be loaded.
protected override void LoadData()
SaveData()
Called when type specific data need to be saved.
protected override void SaveData()