1 write to _maxHeadersLength
IIS.FunctionalTests (1)
src\Shared\runtime\Http2\Hpack\HPackDecoder.cs (1)
118_maxHeadersLength = maxHeadersLength;
7 references to _maxHeadersLength
IIS.FunctionalTests (7)
src\Shared\runtime\Http2\Hpack\HPackDecoder.cs (7)
580if (length > _maxHeadersLength) 582throw new HPackDecodingException(SR.Format(SR.net_http_headers_exceeded_length, _maxHeadersLength)); 585_stringOctets = new byte[Math.Max(length, Math.Min(_stringOctets.Length * 2, _maxHeadersLength))]; 600if (decodedLength > _maxHeadersLength) 602throw new HPackDecodingException(SR.Format(SR.net_http_headers_exceeded_length, _maxHeadersLength)); 608Debug.Assert(_stringLength <= _maxHeadersLength, "String length should have been checked prior to decode."); 640dst = new byte[Math.Max(stringLength, Math.Min(dst.Length * 2, _maxHeadersLength))];