5 references to BUFFER_SIZE
MSBuild (5)
BufferedReadStream.cs (5)
30
_buffer = new byte[
BUFFER_SIZE
];
72
if (count >
BUFFER_SIZE
)
106
int innerReadCount = _innerStream.Read(_buffer, 0,
BUFFER_SIZE
);
132
if (count >
BUFFER_SIZE
)
156
int innerReadCount = await _innerStream.ReadAsync(_buffer, 0,
BUFFER_SIZE
, cancellationToken);