ReadBinary() public method

Reads a byte array from the SSH data stream.
public ReadBinary ( ) : byte[]
return byte[]
コード例 #1
0
 /// <summary>
 /// Reads next data type as byte array from internal buffer.
 /// </summary>
 /// <returns>
 /// The bytes read.
 /// </returns>
 protected byte[] ReadBinary()
 {
     return(_stream.ReadBinary());
 }