< Summary

Class:Microsoft.Azure.CognitiveServices.Search.EntitySearch.Models.ResponseBase
Assembly:Microsoft.Azure.CognitiveServices.Search.BingEntitySearch
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingEntitySearch\src\Generated\EntitySearch\Models\ResponseBase.cs
Covered lines:2
Uncovered lines:0
Coverable lines:2
Total lines:28
Line coverage:100% (2 of 2)
Covered branches:0
Total branches:0

Metrics

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

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingEntitySearch\src\Generated\EntitySearch\Models\ResponseBase.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.Search.EntitySearch.Models
 8{
 9    using System.Linq;
 10
 11    public partial class ResponseBase
 12    {
 13        /// <summary>
 14        /// Initializes a new instance of the ResponseBase class.
 15        /// </summary>
 1216        public ResponseBase()
 17        {
 18            CustomInit();
 1219        }
 20
 21
 22        /// <summary>
 23        /// An initialization method that performs custom operations like setting defaults
 24        /// </summary>
 25        partial void CustomInit();
 26
 27    }
 28}

Methods/Properties

.ctor()