< Summary - CoreWCF Coverage — PR #1766

Information
Class: CoreWCF.InjectedAttribute
Assembly: CoreWCF.Primitives
File(s): /home/runner/work/CoreWCF/CoreWCF/src/CoreWCF.Primitives/src/CoreWCF/InjectedAttribute.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 2
Coverable lines: 2
Total lines: 14
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/InjectedAttribute.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;
 5
 6namespace CoreWCF
 7{
 8    [AttributeUsage(AttributeTargets.Parameter)]
 9    public sealed class InjectedAttribute : Attribute
 10    {
 011        public string PropertyName { get; set; }
 012        public object ServiceKey { get; set; }
 13    }
 14}

Methods/Properties

PropertyName()
ServiceKey()