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