9 references to ActiveMemory
System.Net.Http (9)
System\Net\Http\SocketsHttpHandler\Http2Connection.cs (3)
246
await _stream.WriteAsync(_outgoingBuffer.
ActiveMemory
, cancellationToken).ConfigureAwait(false);
404
await _stream.WriteAsync(_outgoingBuffer.
ActiveMemory
).ConfigureAwait(false);
1702
ReadOnlyMemory<byte> headerBytes = headerBuffer.
ActiveMemory
;
System\Net\Http\SocketsHttpHandler\Http3RequestStream.cs (3)
558
await _stream.WriteAsync(_sendBuffer.
ActiveMemory
, cancellationToken).ConfigureAwait(false);
577
await _stream.WriteAsync(_sendBuffer.
ActiveMemory
, cancellationToken).ConfigureAwait(false);
586
ReadOnlyMemory<byte> toSend = _sendBuffer.
ActiveMemory
;
System\Net\Http\SocketsHttpHandler\HttpConnection.cs (3)
302
private ReadOnlyMemory<byte> RemainingBuffer => _readBuffer.
ActiveMemory
;
1562
ReadOnlyMemory<byte> bytes = _writeBuffer.
ActiveMemory
;
1891
ReadOnlyMemory<byte> source = _readBuffer.
ActiveMemory
.Slice(0, count);