< Summary

Class:Microsoft.Azure.CognitiveServices.Search.WebSearch.Models.Article
Assembly:Microsoft.Azure.CognitiveServices.Search.BingWebSearch
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingWebSearch\src\Generated\WebSearch\Models\Article.cs
Covered lines:2
Uncovered lines:4
Coverable lines:6
Total lines:61
Line coverage:33.3% (2 of 6)
Covered branches:0
Total branches:0

Metrics

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

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingWebSearch\src\Generated\WebSearch\Models\Article.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 Newtonsoft.Json;
 10    using System.Collections;
 11    using System.Collections.Generic;
 12    using System.Linq;
 13
 14    public partial class Article : CreativeWork
 15    {
 16        /// <summary>
 17        /// Initializes a new instance of the Article class.
 18        /// </summary>
 1019        public Article()
 20        {
 21            CustomInit();
 1022        }
 23
 24        /// <summary>
 25        /// Initializes a new instance of the Article class.
 26        /// </summary>
 27        /// <param name="id">A String identifier.</param>
 28        /// <param name="webSearchUrl">The URL To Bing's search result for this
 29        /// item.</param>
 30        /// <param name="name">The name of the thing represented by this
 31        /// object.</param>
 32        /// <param name="url">The URL to get more information about the thing
 33        /// represented by this object.</param>
 34        /// <param name="description">A short description of the item.</param>
 35        /// <param name="bingId">An ID that uniquely identifies this
 36        /// item.</param>
 37        /// <param name="thumbnailUrl">The URL to a thumbnail of the
 38        /// item.</param>
 39        /// <param name="provider">The source of the creative work.</param>
 40        /// <param name="wordCount">The number of words in the text of the
 41        /// Article.</param>
 42        public Article(string id = default(string), string webSearchUrl = default(string), string name = default(string)
 043            : base(id, webSearchUrl, name, url, image, description, bingId, thumbnailUrl, provider, text)
 44        {
 045            WordCount = wordCount;
 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 the number of words in the text of the Article.
 56        /// </summary>
 57        [JsonProperty(PropertyName = "wordCount")]
 058        public int? WordCount { get; private set; }
 59
 60    }
 61}

Methods/Properties

.ctor()
.ctor(...)
get_WordCount()