< Summary

Class:Microsoft.Azure.CognitiveServices.Search.NewsSearch.Models.News
Assembly:Microsoft.Azure.CognitiveServices.Search.BingNewsSearch
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingNewsSearch\src\Generated\NewsSearch\Models\News.cs
Covered lines:3
Uncovered lines:8
Coverable lines:11
Total lines:83
Line coverage:27.2% (3 of 11)
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()-100%100%
get_Location()-0%100%
Validate()-0%0%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingNewsSearch\src\Generated\NewsSearch\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.NewsSearch.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>
 423        public News()
 24        {
 25            CustomInit();
 426        }
 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        /// <param name="location">Location of local news</param>
 42        public News(IList<NewsArticle> value, string id = default(string), string webSearchUrl = default(string), IList<
 043            : base(id, webSearchUrl, followUpQueries, totalEstimatedMatches)
 44        {
 045            Value = value;
 046            Location = location;
 47            CustomInit();
 048        }
 49
 50        /// <summary>
 51        /// An initialization method that performs custom operations like setting defaults
 52        /// </summary>
 53        partial void CustomInit();
 54
 55        /// <summary>
 56        /// Gets or sets an array of NewsArticle objects that contain
 57        /// information about news articles that are relevant to the query. If
 58        /// there are no results to return for the request, the array is empty.
 59        /// </summary>
 60        [JsonProperty(PropertyName = "value")]
 1661        public IList<NewsArticle> Value { get; set; }
 62
 63        /// <summary>
 64        /// Gets location of local news
 65        /// </summary>
 66        [JsonProperty(PropertyName = "location")]
 067        public string Location { get; private set; }
 68
 69        /// <summary>
 70        /// Validate the object.
 71        /// </summary>
 72        /// <exception cref="ValidationException">
 73        /// Thrown if validation fails
 74        /// </exception>
 75        public virtual void Validate()
 76        {
 077            if (Value == null)
 78            {
 079                throw new ValidationException(ValidationRules.CannotBeNull, "Value");
 80            }
 081        }
 82    }
 83}