< Summary

Class:Microsoft.Azure.CognitiveServices.Search.EntitySearch.Models.ImageObject
Assembly:Microsoft.Azure.CognitiveServices.Search.BingEntitySearch
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingEntitySearch\src\Generated\EntitySearch\Models\ImageObject.cs
Covered lines:2
Uncovered lines:8
Coverable lines:10
Total lines:91
Line coverage:20% (2 of 10)
Covered branches:0
Total branches:2
Branch coverage:0% (0 of 2)

Metrics

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

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingEntitySearch\src\Generated\EntitySearch\Models\ImageObject.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.EntitySearch.Models
 8{
 9    using Newtonsoft.Json;
 10    using System.Collections;
 11    using System.Collections.Generic;
 12    using System.Linq;
 13
 14    /// <summary>
 15    /// Defines an image
 16    /// </summary>
 17    public partial class ImageObject : MediaObject
 18    {
 19        /// <summary>
 20        /// Initializes a new instance of the ImageObject class.
 21        /// </summary>
 222        public ImageObject()
 23        {
 24            CustomInit();
 225        }
 26
 27        /// <summary>
 28        /// Initializes a new instance of the ImageObject class.
 29        /// </summary>
 30        /// <param name="id">A String identifier.</param>
 31        /// <param name="contractualRules">A list of rules that you must adhere
 32        /// to if you display the item.</param>
 33        /// <param name="webSearchUrl">The URL To Bing's search result for this
 34        /// item.</param>
 35        /// <param name="name">The name of the thing represented by this
 36        /// object.</param>
 37        /// <param name="url">The URL to get more information about the thing
 38        /// represented by this object.</param>
 39        /// <param name="description">A short description of the item.</param>
 40        /// <param name="entityPresentationInfo">Additional information about
 41        /// the entity such as hints that you can use to determine the entity's
 42        /// type. To determine the entity's type, use the entityScenario and
 43        /// entityTypeHint fields.</param>
 44        /// <param name="bingId">An ID that uniquely identifies this
 45        /// item.</param>
 46        /// <param name="thumbnailUrl">The URL to a thumbnail of the
 47        /// item.</param>
 48        /// <param name="provider">The source of the creative work.</param>
 49        /// <param name="contentUrl">Original URL to retrieve the source (file)
 50        /// for the media object (e.g the source URL for the image).</param>
 51        /// <param name="hostPageUrl">URL of the page that hosts the media
 52        /// object.</param>
 53        /// <param name="width">The width of the source media object, in
 54        /// pixels.</param>
 55        /// <param name="height">The height of the source media object, in
 56        /// pixels.</param>
 57        /// <param name="thumbnail">The URL to a thumbnail of the image</param>
 58        public ImageObject(string id = default(string), IList<ContractualRulesContractualRule> contractualRules = defaul
 059            : base(id, contractualRules, webSearchUrl, name, url, image, description, entityPresentationInfo, bingId, th
 60        {
 061            Thumbnail = thumbnail;
 62            CustomInit();
 063        }
 64
 65        /// <summary>
 66        /// An initialization method that performs custom operations like setting defaults
 67        /// </summary>
 68        partial void CustomInit();
 69
 70        /// <summary>
 71        /// Gets the URL to a thumbnail of the image
 72        /// </summary>
 73        [JsonProperty(PropertyName = "thumbnail")]
 074        public ImageObject Thumbnail { get; private set; }
 75
 76        /// <summary>
 77        /// Validate the object.
 78        /// </summary>
 79        /// <exception cref="Rest.ValidationException">
 80        /// Thrown if validation fails
 81        /// </exception>
 82        public override void Validate()
 83        {
 084            base.Validate();
 085            if (Thumbnail != null)
 86            {
 087                Thumbnail.Validate();
 88            }
 089        }
 90    }
 91}