10 instantiations of QPackDecodingException
Microsoft.AspNetCore.Server.Kestrel.Core (10)
Internal\Http3\QPack\EncoderStreamReader.cs (3)
246throw new QPackDecodingException(/*CoreStrings.FormatQPackStringLengthTooLarge(length, _stringOctets.Length)*/); 291throw new QPackDecodingException(""/*CoreStrings.QPackHuffmanError*/, ex); 326throw new QPackDecodingException("" /*CoreStrings.FormatQPackErrorIndexOutOfRange(index)*/, ex);
src\Shared\runtime\Http3\QPack\QPackDecoder.cs (7)
277throw new QPackDecodingException(SR.Format(SR.net_http_invalid_header_name, "")); 484throw new QPackDecodingException(SR.Format(SR.net_http_invalid_header_name, "")); 586throw new QPackDecodingException(SR.net_http_hpack_incomplete_header_block); 621throw new QPackDecodingException(SR.Format(SR.net_http_headers_exceeded_length, _maxHeadersLength)); 640throw new QPackDecodingException(SR.Format(SR.net_http_headers_exceeded_length, _maxHeadersLength)); 668throw new QPackDecodingException(SR.net_http_hpack_huffman_decode_failed, ex); 760throw new QPackDecodingException(SR.net_http_qpack_no_dynamic_table);
7 references to QPackDecodingException
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Http3\Http3Stream.cs (1)
833catch (QPackDecodingException ex)
Microsoft.AspNetCore.Server.Kestrel.Core.Tests (6)
src\Shared\test\Shared.Tests\runtime\Http3\QPackDecoderTest.cs (6)
294QPackDecodingException exception = Assert.Throws<QPackDecodingException>(() => decoder.Decode(encoded, endHeaders: true, handler: handler)); 314QPackDecodingException exception = Assert.Throws<QPackDecodingException>(() => decoder.Decode(encoded, endHeaders: true, handler: handler)); 338QPackDecodingException exception = Assert.Throws<QPackDecodingException>(() => _decoder.Decode(encoded, endHeaders: true, handler: _handler));