< Summary

Information
Class: System.Net.Http.QPack.QPackEncodingException
Assembly: System.Net.Http
File(s): D:\runner\runtime\src\libraries\Common\src\System\Net\Http\aspnetcore\Http3\QPack\QPackEncodingException.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 6
Coverable lines: 6
Total lines: 26
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%

File(s)

D:\runner\runtime\src\libraries\Common\src\System\Net\Http\aspnetcore\Http3\QPack\QPackEncodingException.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 QPackEncodingException : Exception
 11    {
 12        public QPackEncodingException(string message)
 013            : base(message)
 014        {
 015        }
 16        public QPackEncodingException(string message, Exception innerException)
 17            : base(message, innerException)
 18        {
 19        }
 20
 21        [Obsolete(Obsoletions.LegacyFormatterImplMessage, DiagnosticId = Obsoletions.LegacyFormatterImplDiagId, UrlForma
 022        private QPackEncodingException(SerializationInfo info, StreamingContext context) : base(info, context)
 023        {
 024        }
 25    }
 26}