6 instantiations of QPackDecodingException
Microsoft.AspNetCore.Shared.Tests (6)
src\Shared\runtime\Http3\QPack\QPackDecoder.cs (6)
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)); 662throw new QPackDecodingException(SR.net_http_hpack_huffman_decode_failed, ex); 754throw new QPackDecodingException(SR.net_http_qpack_no_dynamic_table);
2 references to QPackDecodingException
Microsoft.AspNetCore.Shared.Tests (2)
runtime\Http3\QPackDecoderTest.cs (2)
295QPackDecodingException exception = Assert.Throws<QPackDecodingException>(() => _decoder.Decode(encoded, endHeaders: true, handler: _handler));