< Summary

Class:Microsoft.Azure.CognitiveServices.Search.ImageSearch.Models.ResponseBase
Assembly:Microsoft.Azure.CognitiveServices.Search.BingImageSearch
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingImageSearch\src\Generated\ImageSearch\Models\ResponseBase.cs
Covered lines:2
Uncovered lines:0
Coverable lines:2
Total lines:31
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.BingImageSearch\src\Generated\ImageSearch\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.ImageSearch.Models
 8{
 9    using System.Linq;
 10
 11    /// <summary>
 12    /// Response base
 13    /// </summary>
 14    public partial class ResponseBase
 15    {
 16        /// <summary>
 17        /// Initializes a new instance of the ResponseBase class.
 18        /// </summary>
 115019        public ResponseBase()
 20        {
 21            CustomInit();
 115022        }
 23
 24
 25        /// <summary>
 26        /// An initialization method that performs custom operations like setting defaults
 27        /// </summary>
 28        partial void CustomInit();
 29
 30    }
 31}

Methods/Properties

.ctor()