9 references to ActiveMemory
System.Net.Http (9)
System\Net\Http\SocketsHttpHandler\Http2Connection.cs (3)
239await _stream.WriteAsync(_outgoingBuffer.ActiveMemory, cancellationToken).ConfigureAwait(false); 394await _stream.WriteAsync(_outgoingBuffer.ActiveMemory).ConfigureAwait(false); 1647ReadOnlyMemory<byte> headerBytes = headerBuffer.ActiveMemory;
System\Net\Http\SocketsHttpHandler\Http3RequestStream.cs (3)
558await _stream.WriteAsync(_sendBuffer.ActiveMemory, cancellationToken).ConfigureAwait(false); 577await _stream.WriteAsync(_sendBuffer.ActiveMemory, cancellationToken).ConfigureAwait(false); 586ReadOnlyMemory<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);