< Summary

Class:Microsoft.Azure.CognitiveServices.Search.CustomSearch.Models.Identifiable
Assembly:Microsoft.Azure.CognitiveServices.Search.BingCustomSearch
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingCustomSearch\src\Generated\CustomSearch\Models\Identifiable.cs
Covered lines:2
Uncovered lines:4
Coverable lines:6
Total lines:47
Line coverage:33.3% (2 of 6)
Covered branches:0
Total branches:0

Metrics

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

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingCustomSearch\src\Generated\CustomSearch\Models\Identifiable.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.CustomSearch.Models
 8{
 9    using Newtonsoft.Json;
 10    using System.Linq;
 11
 12    /// <summary>
 13    /// Defines the identity of a resource.
 14    /// </summary>
 15    public partial class Identifiable : ResponseBase
 16    {
 17        /// <summary>
 18        /// Initializes a new instance of the Identifiable class.
 19        /// </summary>
 620        public Identifiable()
 21        {
 22            CustomInit();
 623        }
 24
 25        /// <summary>
 26        /// Initializes a new instance of the Identifiable class.
 27        /// </summary>
 28        /// <param name="id">A String identifier.</param>
 029        public Identifiable(string id = default(string))
 30        {
 031            Id = id;
 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        /// <summary>
 41        /// Gets a String identifier.
 42        /// </summary>
 43        [JsonProperty(PropertyName = "id")]
 044        public string Id { get; private set; }
 45
 46    }
 47}

Methods/Properties

.ctor()
.ctor(...)
get_Id()