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