9 references to ActiveMemory
System.Net.Http (9)
System\Net\Http\SocketsHttpHandler\Http2Connection.cs (3)
246await _stream.WriteAsync(_outgoingBuffer.ActiveMemory, cancellationToken).ConfigureAwait(false); 404await _stream.WriteAsync(_outgoingBuffer.ActiveMemory).ConfigureAwait(false); 1702ReadOnlyMemory<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)
302private ReadOnlyMemory<byte> RemainingBuffer => _readBuffer.ActiveMemory; 1562ReadOnlyMemory<byte> bytes = _writeBuffer.ActiveMemory; 1891ReadOnlyMemory<byte> source = _readBuffer.ActiveMemory.Slice(0, count);