< Summary - CoreWCF Coverage — PR #1766

Information
Class: CoreWCF.Security.SecureConversationDriver
Assembly: CoreWCF.Primitives
File(s): /home/runner/work/CoreWCF/CoreWCF/src/CoreWCF.Primitives/src/CoreWCF/Security/SecureConversationDriver.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 5
Coverable lines: 5
Total lines: 36
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

File(s)

/home/runner/work/CoreWCF/CoreWCF/src/CoreWCF.Primitives/src/CoreWCF/Security/SecureConversationDriver.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;
 5using System.Xml;
 6
 7namespace CoreWCF.Security
 8{
 9    internal abstract class SecureConversationDriver
 10    {
 011        public virtual XmlDictionaryString CloseAction => throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new 
 12
 013        public virtual XmlDictionaryString CloseResponseAction => throw DiagnosticUtility.ExceptionUtility.ThrowHelperEr
 14
 015        public virtual bool IsSessionSupported => false;
 16
 17        public abstract XmlDictionaryString IssueAction { get; }
 18
 19        public abstract XmlDictionaryString IssueResponseAction { get; }
 20
 021        public virtual XmlDictionaryString RenewAction => throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new 
 22
 023        public virtual XmlDictionaryString RenewResponseAction => throw DiagnosticUtility.ExceptionUtility.ThrowHelperEr
 24
 25        public abstract XmlDictionaryString Namespace { get; }
 26
 27        public abstract XmlDictionaryString RenewNeededFaultCode { get; }
 28
 29        public abstract XmlDictionaryString BadContextTokenFaultCode { get; }
 30
 31        public abstract string TokenTypeUri { get; }
 32
 33        public abstract UniqueId GetSecurityContextTokenId(XmlDictionaryReader reader);
 34        public abstract bool IsAtSecurityContextToken(XmlDictionaryReader reader);
 35    }
 36}