8 references to MaxResponseHeadersByteLength
System.Net.Http (8)
System\Net\Http\SocketsHttpHandler\Http2Connection.cs (1)
141_hpackDecoder = new HPackDecoder(maxHeadersLength: pool.Settings.MaxResponseHeadersByteLength);
System\Net\Http\SocketsHttpHandler\Http2Stream.cs (2)
106_headerBudgetRemaining = connection._pool.Settings.MaxResponseHeadersByteLength; 609throw new HttpRequestException(HttpRequestError.ConfigurationLimitExceeded, SR.Format(SR.net_http_response_headers_exceeded_length, _connection._pool.Settings.MaxResponseHeadersByteLength));
System\Net\Http\SocketsHttpHandler\Http3Connection.cs (1)
518int integerLength = VariableLengthIntegerHelper.WriteInteger(buffer.Slice(4), settings.MaxResponseHeadersByteLength);
System\Net\Http\SocketsHttpHandler\Http3RequestStream.cs (2)
76_headerBudgetRemaining = connection.Pool.Settings.MaxResponseHeadersByteLength; 922throw new HttpRequestException(HttpRequestError.ConfigurationLimitExceeded, SR.Format(SR.net_http_response_headers_exceeded_length, _connection.Pool.Settings.MaxResponseHeadersByteLength));
System\Net\Http\SocketsHttpHandler\HttpConnection.cs (2)
599_allowedReadLineBytes = _pool.Settings.MaxResponseHeadersByteLength; 1332throw new HttpRequestException(HttpRequestError.ConfigurationLimitExceeded, SR.Format(SR.net_http_response_headers_exceeded_length, _pool.Settings.MaxResponseHeadersByteLength));