< Summary

Class:Microsoft.Azure.CognitiveServices.Search.ImageSearch.Models.Images
Assembly:Microsoft.Azure.CognitiveServices.Search.BingImageSearch
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingImageSearch\src\Generated\ImageSearch\Models\Images.cs
Covered lines:4
Uncovered lines:25
Coverable lines:29
Total lines:156
Line coverage:13.7% (4 of 29)
Covered branches:0
Total branches:20
Branch coverage:0% (0 of 20)

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_NextOffset()-0%100%
get_Value()-100%100%
get_QueryExpansions()-100%100%
get_PivotSuggestions()-0%100%
get_SimilarTerms()-0%100%
Validate()-0%0%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingImageSearch\src\Generated\ImageSearch\Models\Images.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 Microsoft.Rest;
 10    using Newtonsoft.Json;
 11    using System.Collections;
 12    using System.Collections.Generic;
 13    using System.Linq;
 14
 15    /// <summary>
 16    /// Defines an image answer
 17    /// </summary>
 18    public partial class Images : SearchResultsAnswer
 19    {
 20        /// <summary>
 21        /// Initializes a new instance of the Images class.
 22        /// </summary>
 223        public Images()
 24        {
 25            CustomInit();
 226        }
 27
 28        /// <summary>
 29        /// Initializes a new instance of the Images class.
 30        /// </summary>
 31        /// <param name="value">A list of image objects that are relevant to
 32        /// the query. If there are no results, the List is empty.</param>
 33        /// <param name="id">A String identifier.</param>
 34        /// <param name="readLink">The URL that returns this resource.</param>
 35        /// <param name="webSearchUrl">The URL To Bing's search result for this
 36        /// item.</param>
 37        /// <param name="totalEstimatedMatches">The estimated number of
 38        /// webpages that are relevant to the query. Use this number along with
 39        /// the count and offset query parameters to page the results.</param>
 40        /// <param name="nextOffset">Used as part of deduping. Tells client the
 41        /// next offset that client should use in the next pagination
 42        /// request</param>
 43        /// <param name="queryExpansions">A list of expanded queries that
 44        /// narrows the original query. For example, if the query was Microsoft
 45        /// Surface, the expanded queries might be: Microsoft Surface Pro 3,
 46        /// Microsoft Surface RT, Microsoft Surface Phone, and Microsoft
 47        /// Surface Hub.</param>
 48        /// <param name="pivotSuggestions">A list of segments in the original
 49        /// query. For example, if the query was Red Flowers, Bing might
 50        /// segment the query into Red and Flowers. The Flowers pivot may
 51        /// contain query suggestions such as Red Peonies and Red Daisies, and
 52        /// the Red pivot may contain query suggestions such as Green Flowers
 53        /// and Yellow Flowers.</param>
 54        /// <param name="similarTerms">A list of terms that are similar in
 55        /// meaning to the user's query term.</param>
 56        public Images(IList<ImageObject> value, string id = default(string), string readLink = default(string), string w
 057            : base(id, readLink, webSearchUrl, totalEstimatedMatches)
 58        {
 059            NextOffset = nextOffset;
 060            Value = value;
 061            QueryExpansions = queryExpansions;
 062            PivotSuggestions = pivotSuggestions;
 063            SimilarTerms = similarTerms;
 64            CustomInit();
 065        }
 66
 67        /// <summary>
 68        /// An initialization method that performs custom operations like setting defaults
 69        /// </summary>
 70        partial void CustomInit();
 71
 72        /// <summary>
 73        /// Gets used as part of deduping. Tells client the next offset that
 74        /// client should use in the next pagination request
 75        /// </summary>
 76        [JsonProperty(PropertyName = "nextOffset")]
 077        public int? NextOffset { get; private set; }
 78
 79        /// <summary>
 80        /// Gets or sets a list of image objects that are relevant to the
 81        /// query. If there are no results, the List is empty.
 82        /// </summary>
 83        [JsonProperty(PropertyName = "value")]
 884        public IList<ImageObject> Value { get; set; }
 85
 86        /// <summary>
 87        /// Gets a list of expanded queries that narrows the original query.
 88        /// For example, if the query was Microsoft Surface, the expanded
 89        /// queries might be: Microsoft Surface Pro 3, Microsoft Surface RT,
 90        /// Microsoft Surface Phone, and Microsoft Surface Hub.
 91        /// </summary>
 92        [JsonProperty(PropertyName = "queryExpansions")]
 893        public IList<Query> QueryExpansions { get; private set; }
 94
 95        /// <summary>
 96        /// Gets a list of segments in the original query. For example, if the
 97        /// query was Red Flowers, Bing might segment the query into Red and
 98        /// Flowers. The Flowers pivot may contain query suggestions such as
 99        /// Red Peonies and Red Daisies, and the Red pivot may contain query
 100        /// suggestions such as Green Flowers and Yellow Flowers.
 101        /// </summary>
 102        [JsonProperty(PropertyName = "pivotSuggestions")]
 0103        public IList<PivotSuggestions> PivotSuggestions { get; private set; }
 104
 105        /// <summary>
 106        /// Gets a list of terms that are similar in meaning to the user's
 107        /// query term.
 108        /// </summary>
 109        [JsonProperty(PropertyName = "similarTerms")]
 0110        public IList<Query> SimilarTerms { get; private set; }
 111
 112        /// <summary>
 113        /// Validate the object.
 114        /// </summary>
 115        /// <exception cref="ValidationException">
 116        /// Thrown if validation fails
 117        /// </exception>
 118        public virtual void Validate()
 119        {
 0120            if (Value == null)
 121            {
 0122                throw new ValidationException(ValidationRules.CannotBeNull, "Value");
 123            }
 0124            if (QueryExpansions != null)
 125            {
 0126                foreach (var element in QueryExpansions)
 127                {
 0128                    if (element != null)
 129                    {
 0130                        element.Validate();
 131                    }
 132                }
 133            }
 0134            if (PivotSuggestions != null)
 135            {
 0136                foreach (var element1 in PivotSuggestions)
 137                {
 0138                    if (element1 != null)
 139                    {
 0140                        element1.Validate();
 141                    }
 142                }
 143            }
 0144            if (SimilarTerms != null)
 145            {
 0146                foreach (var element2 in SimilarTerms)
 147                {
 0148                    if (element2 != null)
 149                    {
 0150                        element2.Validate();
 151                    }
 152                }
 153            }
 0154        }
 155    }
 156}