< Summary

Information
Class: System.Net.Http.QPack.QPackDecodingException
Assembly: System.Net.Http
File(s): D:\runner\runtime\src\libraries\Common\src\System\Net\Http\aspnetcore\Http3\QPack\QPackDecodingException.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 9
Coverable lines: 9
Total lines: 29
Line coverage: 0%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Metrics

MethodBranch coverage Cyclomatic complexity NPath complexity Sequence coverage
.ctor(...)100%110%
.ctor(...)100%110%
.ctor(...)100%110%

File(s)

D:\runner\runtime\src\libraries\Common\src\System\Net\Http\aspnetcore\Http3\QPack\QPackDecodingException.cs

#LineLine coverage
 1// Licensed to the .NET Foundation under one or more agreements.
 2// The .NET Foundation licenses this file to you under the MIT license.
 3
 4using System.ComponentModel;
 5using System.Runtime.Serialization;
 6
 7namespace System.Net.Http.QPack
 8{
 9    [Serializable]
 10    internal sealed class QPackDecodingException : Exception
 11    {
 12        public QPackDecodingException()
 13        {
 14        }
 15
 016        public QPackDecodingException(string message) : base(message)
 017        {
 018        }
 19
 020        public QPackDecodingException(string message, Exception innerException) : base(message, innerException)
 021        {
 022        }
 23
 24        [Obsolete(Obsoletions.LegacyFormatterImplMessage, DiagnosticId = Obsoletions.LegacyFormatterImplDiagId, UrlForma
 025        private QPackDecodingException(SerializationInfo info, StreamingContext context) : base(info, context)
 026        {
 027        }
 28    }
 29}