7 references to MaximumEncodedLength
System.Net.Http (7)
src\libraries\Common\src\System\Net\Http\aspnetcore\Http3\Frames\Http3Frame.cs (1)
10
public const int MaximumEncodedFrameEnvelopeLength = 1 + VariableLengthIntegerHelper.
MaximumEncodedLength
; // Frame type + payload length.
System\Net\Http\SocketsHttpHandler\Http3Connection.cs (5)
516
Span<byte> buffer = stackalloc byte[4 + VariableLengthIntegerHelper.
MaximumEncodedLength
];
673
buffer.EnsureAvailableSpace(VariableLengthIntegerHelper.
MaximumEncodedLength
);
807
buffer.EnsureAvailableSpace(VariableLengthIntegerHelper.
MaximumEncodedLength
* 2);
840
buffer.EnsureAvailableSpace(VariableLengthIntegerHelper.
MaximumEncodedLength
* 2);
891
buffer.EnsureAvailableSpace(VariableLengthIntegerHelper.
MaximumEncodedLength
);
System\Net\Http\SocketsHttpHandler\Http3RequestStream.cs (1)
877
_recvBuffer.EnsureAvailableSpace(VariableLengthIntegerHelper.
MaximumEncodedLength
* 2);