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

SshData

public abstract class SshData
public bool IsEndOfData { get; }

protected virtual int ZeroReaderIndex { get; }

protected SshData()

public virtual byte[] GetBytes()

public void Load(byte[] value)

protected void LoadBytes(byte[] bytes)

protected abstract void LoadData()

protected string ReadAsciiString()

protected BigInteger ReadBigInt()

protected byte[] ReadBinaryString()

protected bool ReadBoolean()

protected byte ReadByte()

protected byte[] ReadBytes()

protected byte[] ReadBytes(int length)

protected IDictionary<string, string> ReadExtensionPair()

protected long ReadInt64()

protected string[] ReadNamesList()

protected string ReadString()

protected ushort ReadUInt16()

protected uint ReadUInt32()

protected ulong ReadUInt64()

protected void ResetReader()

protected abstract void SaveData()

protected void Write(IEnumerable<byte> data)

protected void Write(byte data)

protected void Write(bool data)

protected void Write(ushort data)

protected void Write(uint data)

protected void Write(ulong data)

protected void Write(long data)

protected void Write(string data)

protected void Write(BigInteger data)

protected void Write(string[] data)

protected void Write(IDictionary<string, string> data)

protected void WriteAscii(string data)

protected void WriteBinaryString(byte[] data)