9 references to ActiveMemory
System.Net.Http (9)
System\Net\Http\SocketsHttpHandler\Http2Connection.cs (3)
238await _stream.WriteAsync(_outgoingBuffer.ActiveMemory, cancellationToken).ConfigureAwait(false); 391await _stream.WriteAsync(_outgoingBuffer.ActiveMemory).ConfigureAwait(false); 1644ReadOnlyMemory<byte> headerBytes = headerBuffer.ActiveMemory;
System\Net\Http\SocketsHttpHandler\Http3RequestStream.cs (3)
524await _stream.WriteAsync(_sendBuffer.ActiveMemory, cancellationToken).ConfigureAwait(false); 543await _stream.WriteAsync(_sendBuffer.ActiveMemory, cancellationToken).ConfigureAwait(false); 552ReadOnlyMemory<byte> toSend = _sendBuffer.ActiveMemory;
System\Net\Http\SocketsHttpHandler\HttpConnection.cs (3)
301private ReadOnlyMemory<byte> RemainingBuffer => _readBuffer.ActiveMemory; 1559ReadOnlyMemory<byte> bytes = _writeBuffer.ActiveMemory; 1865ReadOnlyMemory<byte> source = _readBuffer.ActiveMemory.Slice(0, count);