5 references to ReadAsync
System.Net.Http (5)
System\Net\Http\SocketsHttpHandler\ChunkedEncodingReadStream.cs (2)
189
int bytesRead = await _connection.
ReadAsync
(buffer.Slice(0, (int)Math.Min((ulong)buffer.Length, _chunkBytesRemaining))).ConfigureAwait(false);
209
await _connection.
ReadAsync
(buffer).ConfigureAwait(false);
System\Net\Http\SocketsHttpHandler\ConnectionCloseReadStream.cs (1)
49
ValueTask<int> readTask = connection.
ReadAsync
(buffer);
System\Net\Http\SocketsHttpHandler\ContentLengthReadStream.cs (1)
74
ValueTask<int> readTask = _connection.
ReadAsync
(buffer);
System\Net\Http\SocketsHttpHandler\HttpConnection.cs (1)
1832
ReadAsync
(destination) :