< Summary

Class:Microsoft.Azure.CognitiveServices.Language.SpellCheck.Models.Response
Assembly:Microsoft.Azure.CognitiveServices.Language.SpellCheck
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Language.SpellCheck\src\Generated\Models\Response.cs
Covered lines:2
Uncovered lines:2
Coverable lines:4
Total lines:41
Line coverage:50% (2 of 4)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Language.SpellCheck\src\Generated\Models\Response.cs

#LineLine coverage
 1// <auto-generated>
 2// Code generated by Microsoft (R) AutoRest Code Generator.
 3// Changes may cause incorrect behavior and will be lost if the code is
 4// regenerated.
 5// </auto-generated>
 6
 7namespace Microsoft.Azure.CognitiveServices.Language.SpellCheck.Models
 8{
 9    using System.Linq;
 10
 11    /// <summary>
 12    /// Defines a response. All schemas that could be returned at the root of a
 13    /// response should inherit from this
 14    /// </summary>
 15    public partial class Response : Identifiable
 16    {
 17        /// <summary>
 18        /// Initializes a new instance of the Response class.
 19        /// </summary>
 120        public Response()
 21        {
 22            CustomInit();
 123        }
 24
 25        /// <summary>
 26        /// Initializes a new instance of the Response class.
 27        /// </summary>
 28        /// <param name="id">A String identifier.</param>
 29        public Response(string id = default(string))
 030            : base(id)
 31        {
 32            CustomInit();
 033        }
 34
 35        /// <summary>
 36        /// An initialization method that performs custom operations like setting defaults
 37        /// </summary>
 38        partial void CustomInit();
 39
 40    }
 41}

Methods/Properties

.ctor()
.ctor(...)