< Summary - CoreWCF Coverage — PR #1766

Information
Class: CoreWCF.OpenApi.Attributes.OpenApiOperationAttribute
Assembly: CoreWCF.WebHttp
File(s): /home/runner/work/CoreWCF/CoreWCF/src/CoreWCF.WebHttp/src/CoreWCF/OpenApi/Attributes/OpenApiOperationAttribute.cs
Line coverage
100%
Covered lines: 2
Uncovered lines: 0
Coverable lines: 2
Total lines: 24
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.WebHttp/src/CoreWCF/OpenApi/Attributes/OpenApiOperationAttribute.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.OpenApi.Attributes
 7{
 8    /// <summary>
 9    /// Attribute to denote information about an operation.
 10    /// </summary>
 11    [AttributeUsage(AttributeTargets.Method)]
 12    public sealed class OpenApiOperationAttribute : Attribute
 13    {
 14        /// <summary>
 15        /// A short summary about an operation.
 16        /// </summary>
 317        public string Summary { get; set; }
 18
 19        /// <summary>
 20        /// Description of an operation
 21        /// </summary>
 322        public string Description { get; set; }
 23    }
 24}

Methods/Properties

Summary()
Description()