< Summary

Class:Microsoft.Azure.CognitiveServices.Search.WebSearch.Models.Intangible
Assembly:Microsoft.Azure.CognitiveServices.Search.BingWebSearch
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingWebSearch\src\Generated\WebSearch\Models\Intangible.cs
Covered lines:0
Uncovered lines:4
Coverable lines:4
Total lines:46
Line coverage:0% (0 of 4)
Covered branches:0
Total branches:0

Metrics

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

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingWebSearch\src\Generated\WebSearch\Models\Intangible.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.WebSearch.Models
 8{
 9    using System.Linq;
 10
 11    public partial class Intangible : Thing
 12    {
 13        /// <summary>
 14        /// Initializes a new instance of the Intangible class.
 15        /// </summary>
 016        public Intangible()
 17        {
 18            CustomInit();
 019        }
 20
 21        /// <summary>
 22        /// Initializes a new instance of the Intangible class.
 23        /// </summary>
 24        /// <param name="id">A String identifier.</param>
 25        /// <param name="webSearchUrl">The URL To Bing's search result for this
 26        /// item.</param>
 27        /// <param name="name">The name of the thing represented by this
 28        /// object.</param>
 29        /// <param name="url">The URL to get more information about the thing
 30        /// represented by this object.</param>
 31        /// <param name="description">A short description of the item.</param>
 32        /// <param name="bingId">An ID that uniquely identifies this
 33        /// item.</param>
 34        public Intangible(string id = default(string), string webSearchUrl = default(string), string name = default(stri
 035            : base(id, webSearchUrl, name, url, image, description, bingId)
 36        {
 37            CustomInit();
 038        }
 39
 40        /// <summary>
 41        /// An initialization method that performs custom operations like setting defaults
 42        /// </summary>
 43        partial void CustomInit();
 44
 45    }
 46}

Methods/Properties

.ctor()
.ctor(...)