< Summary

Class:Microsoft.Azure.CognitiveServices.Search.VisualSearch.Models.ResponseBase
Assembly:Microsoft.Azure.CognitiveServices.Search.BingVisualSearch
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingVisualSearch\src\Generated\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.BingVisualSearch\src\Generated\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.VisualSearch.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>
 109219        public ResponseBase()
 20        {
 21            CustomInit();
 109222        }
 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()