Table of Contents

Class ChannelWindowAdjustMessage

Namespace
Renci.SshNet.Messages.Connection
Assembly
Renci.SshNet.dll

Represents SSH_MSG_CHANNEL_SUCCESS message.

public class ChannelWindowAdjustMessage : ChannelMessage

Inheritance

Inherited Members

Constructors

ChannelWindowAdjustMessage()

Initializes a new instance of the Renci.SshNet.Messages.Connection.ChannelWindowAdjustMessage class.

public ChannelWindowAdjustMessage()

ChannelWindowAdjustMessage(uint, uint)

Initializes a new instance of the Renci.SshNet.Messages.Connection.ChannelWindowAdjustMessage class.

public ChannelWindowAdjustMessage(uint localChannelNumber, uint bytesToAdd)

Parameters

localChannelNumber uint

The local channel number.

bytesToAdd uint

The bytes to add.

Properties

BufferCapacity

Gets the size of the message in bytes.

protected override int BufferCapacity { get; }

Property Value

int

BytesToAdd

Gets number of bytes to add to the window.

public uint BytesToAdd { get; }

Property Value

uint

MessageName

Gets the message name as defined in RFC 4250.

public override string MessageName { get; }

Property Value

string

MessageNumber

Gets the message number as defined in RFC 4250.

public override byte MessageNumber { get; }

Property Value

byte

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()