BinaryStreamPointerBaseRead Method
Reads a specified number of bytes from the BinaryStream and advances the position by that amount.
Namespace: SnapDB.IOAssembly: SnapDB (in SnapDB.dll) Version: 1.0.102.0 -- Release Build+29075351d0e5aa4dea46a5c520805222f672dc2e
public override int Read(
byte[] value,
int offset,
int count
)
Public Overrides Function Read (
value As Byte(),
offset As Integer,
count As Integer
) As Integer
public:
virtual int Read(
array<unsigned char>^ value,
int offset,
int count
) override
function Read(value, offset, count);
- value Byte
- The byte array where the read bytes will be stored.
- offset Int32
- The starting index in the byte array where the read bytes will be placed.
- count Int32
- The maximum number of bytes to read.
Int32The total number of bytes read into the buffer.