Base:
4 references to ReadAsync
dotnet (1)
Commands\Test\MTP\IPC\NamedPipeServer.cs (1)
92
: await _namedPipeServerStream.
ReadAsync
(_readBuffer, cancellationToken);
Microsoft.Build.Tasks.Core (1)
src\msbuild\src\Shared\NodePipeBase.cs (1)
233
int bytesRead = await NodeStream.
ReadAsync
(buffer.AsMemory(totalBytesRead, bytesToRead - totalBytesRead), cancellationToken).ConfigureAwait(false);
System.ServiceModel.NetNamedPipe (2)
System\ServiceModel\Channels\PipeConnection.cs (2)
132
int bytesRead = await _pipe.
ReadAsync
(buffer, cancellationToken);
426
return _pipe.
ReadAsync
(ZeroBuffer, token);