< Summary

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

Metrics

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

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingLocalSearch\src\Generated\LocalSearch\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.LocalSearch.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>
 019        public ResponseBase()
 20        {
 21            CustomInit();
 022        }
 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()