4 instantiations of HuffmanDecodingException
Microsoft.AspNetCore.Shared.Tests (4)
src\Shared\runtime\Http2\Hpack\Huffman.cs (4)
733throw new HuffmanDecodingException(SR.net_http_hpack_huffman_decode_failed); 776throw new HuffmanDecodingException(SR.net_http_hpack_huffman_decode_failed); 792throw new HuffmanDecodingException(SR.net_http_hpack_huffman_decode_failed); 800throw new HuffmanDecodingException(SR.net_http_hpack_huffman_decode_failed);
7 references to HuffmanDecodingException
Microsoft.AspNetCore.Shared.Tests (7)
runtime\Http2\HPackDecoderTest.cs (1)
903Assert.IsType<HuffmanDecodingException>(exception.InnerException);
runtime\Http2\HuffmanDecodingTests.cs (4)
89Assert.Throws<HuffmanDecodingException>(() => Huffman.Decode(encoded, ref decoded)); 271Exception exception = Assert.Throws<HuffmanDecodingException>(() => Huffman.Decode(new ReadOnlySpan<byte>(encoded), ref dst)); 288Exception exception = Assert.Throws<HuffmanDecodingException>(() => Huffman.Decode(new ReadOnlySpan<byte>(encoded), ref dst)); 333Exception exception = Assert.Throws<HuffmanDecodingException>(() => Huffman.Decode(new ReadOnlySpan<byte>(encoded), ref dst));
src\Shared\runtime\Http2\Hpack\HPackDecoder.cs (1)
616catch (HuffmanDecodingException ex)
src\Shared\runtime\Http3\QPack\QPackDecoder.cs (1)
660catch (HuffmanDecodingException ex)