3 references to _readBuffer
dotnet (3)
Commands\Test\MTP\IPC\NamedPipeServer.cs (3)
91
? await _namedPipeServerStream.ReadAtLeastAsync(
_readBuffer
, minimumBytes: sizeof(int), throwOnEndOfStream: false, cancellationToken)
92
: await _namedPipeServerStream.ReadAsync(
_readBuffer
, cancellationToken);
103
Memory<byte> remainingBytesToProcess =
_readBuffer
.AsMemory(0, currentReadBytes);