< Summary

Class:Microsoft.Azure.CognitiveServices.Search.WebSearch.Models.News
Assembly:Microsoft.Azure.CognitiveServices.Search.BingWebSearch
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingWebSearch\src\Generated\WebSearch\Models\News.cs
Covered lines:2
Uncovered lines:10
Coverable lines:12
Total lines:82
Line coverage:16.6% (2 of 12)
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_Value()-0%100%
get_Location()-0%100%
Validate()-0%0%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingWebSearch\src\Generated\WebSearch\Models\News.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 news answer.
 17    /// </summary>
 18    public partial class News : SearchResultsAnswer
 19    {
 20        /// <summary>
 21        /// Initializes a new instance of the News class.
 22        /// </summary>
 223        public News()
 24        {
 25            CustomInit();
 226        }
 27
 28        /// <summary>
 29        /// Initializes a new instance of the News class.
 30        /// </summary>
 31        /// <param name="value">An array of NewsArticle objects that contain
 32        /// information about news articles that are relevant to the query. If
 33        /// there are no results to return for the request, the array is
 34        /// empty.</param>
 35        /// <param name="id">A String identifier.</param>
 36        /// <param name="webSearchUrl">The URL To Bing's search result for this
 37        /// item.</param>
 38        /// <param name="totalEstimatedMatches">The estimated number of
 39        /// webpages that are relevant to the query. Use this number along with
 40        /// the count and offset query parameters to page the results.</param>
 41        public News(IList<NewsArticle> value, string id = default(string), string webSearchUrl = default(string), IList<
 042            : base(id, webSearchUrl, followUpQueries, queryContext, totalEstimatedMatches, isFamilyFriendly)
 43        {
 044            Value = value;
 045            Location = location;
 46            CustomInit();
 047        }
 48
 49        /// <summary>
 50        /// An initialization method that performs custom operations like setting defaults
 51        /// </summary>
 52        partial void CustomInit();
 53
 54        /// <summary>
 55        /// Gets or sets an array of NewsArticle objects that contain
 56        /// information about news articles that are relevant to the query. If
 57        /// there are no results to return for the request, the array is empty.
 58        /// </summary>
 59        [JsonProperty(PropertyName = "value")]
 060        public IList<NewsArticle> Value { get; set; }
 61
 62        /// <summary>
 63        /// </summary>
 64        [JsonProperty(PropertyName = "location")]
 065        public string Location { get; private set; }
 66
 67        /// <summary>
 68        /// Validate the object.
 69        /// </summary>
 70        /// <exception cref="ValidationException">
 71        /// Thrown if validation fails
 72        /// </exception>
 73        public override void Validate()
 74        {
 075            base.Validate();
 076            if (Value == null)
 77            {
 078                throw new ValidationException(ValidationRules.CannotBeNull, "Value");
 79            }
 080        }
 81    }
 82}