< Summary - CoreWCF Coverage — PR #1766

Information
Class: CoreWCF.IdentityModel.Claims.Rights
Assembly: CoreWCF.Primitives
File(s): /home/runner/work/CoreWCF/CoreWCF/src/CoreWCF.Primitives/src/CoreWCF/IdentityModel/Claims/Rights.cs
Line coverage
100%
Covered lines: 2
Uncovered lines: 0
Coverable lines: 2
Total lines: 15
Line coverage: 100%
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/IdentityModel/Claims/Rights.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
 4namespace CoreWCF.IdentityModel.Claims
 5{
 6    public static class Rights
 7    {
 8        private const string rightNamespace = XsiConstants.Namespace + "/right";
 9        private const string identity = rightNamespace + "/identity";
 10        private const string possessProperty = rightNamespace + "/possessproperty";
 11
 27312        public static string Identity { get { return identity; } }
 5413        public static string PossessProperty { get { return possessProperty; } }
 14    }
 15}

Methods/Properties

Identity()
PossessProperty()