<PackageReference Include="SSH.NET" Version="2020.0.2" />

Renci.SshNet.Messages.Connection.ChannelOpenConfirmationMessage

Represents SSH_MSG_CHANNEL_OPEN_CONFIRMATION message.
namespace Renci.SshNet.Messages.Connection { public class ChannelOpenConfirmationMessage : ChannelMessage { public uint RemoteChannelNumber { get; } public uint InitialWindowSize { get; } public uint MaximumPacketSize { get; } public ChannelOpenConfirmationMessage(); public ChannelOpenConfirmationMessage(uint localChannelNumber, uint initialWindowSize, uint maximumPacketSize, uint remoteChannelNumber); } }