Table of Contents

Class IgnoreMessage

Namespace
Renci.SshNet.Messages.Transport
Assembly
Renci.SshNet.dll

Represents SSH_MSG_IGNORE message.

public class IgnoreMessage : Message

Inheritance

Inherited Members

Constructors

IgnoreMessage()

Initializes a new instance of the Renci.SshNet.Messages.Transport.IgnoreMessage class.

public IgnoreMessage()

IgnoreMessage(byte[])

Initializes a new instance of the Renci.SshNet.Messages.Transport.IgnoreMessage class.

public IgnoreMessage(byte[] data)

Parameters

data byte[]

The data.

Properties

BufferCapacity

Gets the size of the message in bytes.

protected override int BufferCapacity { get; }

Property Value

int

Data

Gets ignore message data if this message has been initialised with data to be sent. Otherwise, returns an empty array.

public byte[] Data { get; }

Property Value

byte[]

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