BinaryStreamBaseReadAll(Byte, Int32, Int32) Method
Reads all of the provided bytes. Will not return prematurely,
but continue to execute a
Read(Byte, Int32, Int32) command until the entire
length has been read.
Namespace: SnapDB.IOAssembly: SnapDB (in SnapDB.dll) Version: 1.0.102.0 -- Release Build+29075351d0e5aa4dea46a5c520805222f672dc2e
public void ReadAll(
byte[] buffer,
int position,
int length
)
Public Sub ReadAll (
buffer As Byte(),
position As Integer,
length As Integer
)
public:
void ReadAll(
array<unsigned char>^ buffer,
int position,
int length
)
function ReadAll(buffer, position, length);
Parameters
- buffer Byte
- position Int32
- length Int32
| EndOfStreamException | occurs if the end of the stream has been reached. |