C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
BufferedBytes.cs
Go to the documentation of this file.
2{
5 public struct BufferedBytes
6 {
8 public int LengthFilled;
9
11 public byte[] Bytes;
12
15 public long TotalBytesRead;
16 }
17}
byte[] Bytes
The buffer of bytes filled.
int LengthFilled
The actual length of bytes, which may be shorter.
long TotalBytesRead
The total number of bytes read by the source producer as of this buffer i.e. The change in the source...
The structure containing an array of bytes and integer indicating the number of bytes in the array th...