< Summary

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

Metrics

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

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingWebSearch\src\Generated\WebSearch\Models\SpellSuggestions.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 Microsoft.Rest;
 10    using Newtonsoft.Json;
 11    using System.Collections;
 12    using System.Collections.Generic;
 13    using System.Linq;
 14
 15    /// <summary>
 16    /// Defines a suggested query string that likely represents the user's
 17    /// intent. The search results include this response if Bing determines
 18    /// that the user may have intended to search for something different. For
 19    /// example, if the user searches for alon brown, Bing may determine that
 20    /// the user likely intended to search for Alton Brown instead (based on
 21    /// past searches by others of Alon Brown).
 22    /// </summary>
 23    public partial class SpellSuggestions : SearchResultsAnswer
 24    {
 25        /// <summary>
 26        /// Initializes a new instance of the SpellSuggestions class.
 27        /// </summary>
 028        public SpellSuggestions()
 29        {
 30            CustomInit();
 031        }
 32
 33        /// <summary>
 34        /// Initializes a new instance of the SpellSuggestions class.
 35        /// </summary>
 36        /// <param name="value">A list of suggested query strings that may
 37        /// represent the user's intention. The list contains only one Query
 38        /// object.</param>
 39        /// <param name="id">A String identifier.</param>
 40        /// <param name="webSearchUrl">The URL To Bing's search result for this
 41        /// item.</param>
 42        /// <param name="totalEstimatedMatches">The estimated number of
 43        /// webpages that are relevant to the query. Use this number along with
 44        /// the count and offset query parameters to page the results.</param>
 45        public SpellSuggestions(IList<Query> value, string id = default(string), string webSearchUrl = default(string), 
 046            : base(id, webSearchUrl, followUpQueries, queryContext, totalEstimatedMatches, isFamilyFriendly)
 47        {
 048            Value = value;
 49            CustomInit();
 050        }
 51
 52        /// <summary>
 53        /// An initialization method that performs custom operations like setting defaults
 54        /// </summary>
 55        partial void CustomInit();
 56
 57        /// <summary>
 58        /// Gets or sets a list of suggested query strings that may represent
 59        /// the user's intention. The list contains only one Query object.
 60        /// </summary>
 61        [JsonProperty(PropertyName = "value")]
 062        public IList<Query> Value { get; set; }
 63
 64        /// <summary>
 65        /// Validate the object.
 66        /// </summary>
 67        /// <exception cref="ValidationException">
 68        /// Thrown if validation fails
 69        /// </exception>
 70        public override void Validate()
 71        {
 072            base.Validate();
 073            if (Value == null)
 74            {
 075                throw new ValidationException(ValidationRules.CannotBeNull, "Value");
 76            }
 077            if (Value != null)
 78            {
 079                foreach (var element in Value)
 80                {
 081                    if (element != null)
 82                    {
 083                        element.Validate();
 84                    }
 85                }
 86            }
 087        }
 88    }
 89}