Base:
5 references to ReadAsync
dotnet (1)
Commands\Test\MTP\IPC\NamedPipeServer.cs (1)
92
: await _namedPipeServerStream.
ReadAsync
(_readBuffer, cancellationToken);
dotnet.Tests (1)
CommandTests\Test\NamedPipeClient.cs (1)
113
int currentReadBytes = await _namedPipeClientStream.
ReadAsync
(_readBuffer.AsMemory(currentReadIndex, _readBuffer.Length), cancellationToken).ConfigureAwait(false);
Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes (1)
Internal\NamedPipeConnection.cs (1)
88
var bytesReceived = await _stream.
ReadAsync
(buffer);
System.ServiceModel.NetNamedPipe (2)
System\ServiceModel\Channels\PipeConnection.cs (2)
132
int bytesRead = await _pipe.
ReadAsync
(buffer, cancellationToken);
426
return _pipe.
ReadAsync
(ZeroBuffer, token);