< Summary

Class:Microsoft.Azure.CognitiveServices.Search.ImageSearch.Models.StructuredValue
Assembly:Microsoft.Azure.CognitiveServices.Search.BingImageSearch
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingImageSearch\src\Generated\ImageSearch\Models\StructuredValue.cs
Covered lines:0
Uncovered lines:4
Coverable lines:4
Total lines:49
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.BingImageSearch\src\Generated\ImageSearch\Models\StructuredValue.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    public partial class StructuredValue : Intangible
 12    {
 13        /// <summary>
 14        /// Initializes a new instance of the StructuredValue class.
 15        /// </summary>
 016        public StructuredValue()
 17        {
 18            CustomInit();
 019        }
 20
 21        /// <summary>
 22        /// Initializes a new instance of the StructuredValue class.
 23        /// </summary>
 24        /// <param name="id">A String identifier.</param>
 25        /// <param name="readLink">The URL that returns this resource.</param>
 26        /// <param name="webSearchUrl">The URL To Bing's search result for this
 27        /// item.</param>
 28        /// <param name="name">The name of the thing represented by this
 29        /// object.</param>
 30        /// <param name="url">The URL to get more information about the thing
 31        /// represented by this object.</param>
 32        /// <param name="image">An image of the item.</param>
 33        /// <param name="description">A short description of the item.</param>
 34        /// <param name="alternateName">An alias for the item</param>
 35        /// <param name="bingId">An ID that uniquely identifies this
 36        /// item.</param>
 37        public StructuredValue(string id = default(string), string readLink = default(string), string webSearchUrl = def
 038            : base(id, readLink, webSearchUrl, name, url, image, description, alternateName, bingId)
 39        {
 40            CustomInit();
 041        }
 42
 43        /// <summary>
 44        /// An initialization method that performs custom operations like setting defaults
 45        /// </summary>
 46        partial void CustomInit();
 47
 48    }
 49}

Methods/Properties

.ctor()
.ctor(...)