Class IgnoreMessage
Represents SSH_MSG_IGNORE message.
public class IgnoreMessage : Message
- Inheritance
-
IgnoreMessage
- Inherited Members
Constructors
IgnoreMessage()
Initializes a new instance of the IgnoreMessage class.
public IgnoreMessage()
IgnoreMessage(byte[])
Initializes a new instance of the 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
The size of the messages in bytes.
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
public override string MessageName { get; }
Property Value
MessageNumber
public override byte MessageNumber { 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()