< Summary

Class:Microsoft.Azure.CognitiveServices.Search.WebSearch.Models.WebPage
Assembly:Microsoft.Azure.CognitiveServices.Search.BingWebSearch
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingWebSearch\src\Generated\WebSearch\Models\WebPage.cs
Covered lines:3
Uncovered lines:13
Coverable lines:16
Total lines:123
Line coverage:18.7% (3 of 16)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_DisplayUrl()-100%100%
get_Snippet()-0%100%
get_DeepLinks()-0%100%
get_DateLastCrawled()-0%100%
get_SearchTags()-0%100%
get_PrimaryImageOfPage()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingWebSearch\src\Generated\WebSearch\Models\WebPage.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    /// <summary>
 15    /// Defines a webpage that is relevant to the query.
 16    /// </summary>
 17    public partial class WebPage : CreativeWork
 18    {
 19        /// <summary>
 20        /// Initializes a new instance of the WebPage class.
 21        /// </summary>
 1222        public WebPage()
 23        {
 24            CustomInit();
 1225        }
 26
 27        /// <summary>
 28        /// Initializes a new instance of the WebPage class.
 29        /// </summary>
 30        /// <param name="id">A String identifier.</param>
 31        /// <param name="webSearchUrl">The URL To Bing's search result for this
 32        /// item.</param>
 33        /// <param name="name">The name of the thing represented by this
 34        /// object.</param>
 35        /// <param name="url">The URL to get more information about the thing
 36        /// represented by this object.</param>
 37        /// <param name="description">A short description of the item.</param>
 38        /// <param name="bingId">An ID that uniquely identifies this
 39        /// item.</param>
 40        /// <param name="thumbnailUrl">The URL to a thumbnail of the
 41        /// item.</param>
 42        /// <param name="provider">The source of the creative work.</param>
 43        /// <param name="displayUrl">The display URL of the webpage. The URL is
 44        /// meant for display purposes only and is not well formed.</param>
 45        /// <param name="snippet">A snippet of text from the webpage that
 46        /// describes its contents.</param>
 47        /// <param name="deepLinks">A list of links to related content that
 48        /// Bing found in the website that contains this webpage. The Webpage
 49        /// object in this context includes only the name, url, urlPingSuffix,
 50        /// and snippet fields.</param>
 51        /// <param name="dateLastCrawled">The last time that Bing crawled the
 52        /// webpage. The date is in the form, YYYY-MM-DDTHH:MM:SS. For example,
 53        /// 2015-04-13T05:23:39.</param>
 54        /// <param name="searchTags">A list of search tags that the webpage
 55        /// owner specified on the webpage. The API returns only indexed search
 56        /// tags. The name field of the MetaTag object contains the indexed
 57        /// search tag. Search tags begin with search.* (for example,
 58        /// search.assetId). The content field contains the tag's
 59        /// value.</param>
 60        public WebPage(string id = default(string), string webSearchUrl = default(string), string name = default(string)
 061            : base(id, webSearchUrl, name, url, image, description, bingId, thumbnailUrl, provider, text)
 62        {
 063            DisplayUrl = displayUrl;
 064            Snippet = snippet;
 065            DeepLinks = deepLinks;
 066            DateLastCrawled = dateLastCrawled;
 067            SearchTags = searchTags;
 068            PrimaryImageOfPage = primaryImageOfPage;
 69            CustomInit();
 070        }
 71
 72        /// <summary>
 73        /// An initialization method that performs custom operations like setting defaults
 74        /// </summary>
 75        partial void CustomInit();
 76
 77        /// <summary>
 78        /// Gets the display URL of the webpage. The URL is meant for display
 79        /// purposes only and is not well formed.
 80        /// </summary>
 81        [JsonProperty(PropertyName = "displayUrl")]
 1482        public string DisplayUrl { get; private set; }
 83
 84        /// <summary>
 85        /// Gets a snippet of text from the webpage that describes its
 86        /// contents.
 87        /// </summary>
 88        [JsonProperty(PropertyName = "snippet")]
 089        public string Snippet { get; private set; }
 90
 91        /// <summary>
 92        /// Gets a list of links to related content that Bing found in the
 93        /// website that contains this webpage. The Webpage object in this
 94        /// context includes only the name, url, urlPingSuffix, and snippet
 95        /// fields.
 96        /// </summary>
 97        [JsonProperty(PropertyName = "deepLinks")]
 098        public IList<WebPage> DeepLinks { get; private set; }
 99
 100        /// <summary>
 101        /// Gets the last time that Bing crawled the webpage. The date is in
 102        /// the form, YYYY-MM-DDTHH:MM:SS. For example, 2015-04-13T05:23:39.
 103        /// </summary>
 104        [JsonProperty(PropertyName = "dateLastCrawled")]
 0105        public string DateLastCrawled { get; private set; }
 106
 107        /// <summary>
 108        /// Gets a list of search tags that the webpage owner specified on the
 109        /// webpage. The API returns only indexed search tags. The name field
 110        /// of the MetaTag object contains the indexed search tag. Search tags
 111        /// begin with search.* (for example, search.assetId). The content
 112        /// field contains the tag's value.
 113        /// </summary>
 114        [JsonProperty(PropertyName = "searchTags")]
 0115        public IList<WebMetaTag> SearchTags { get; private set; }
 116
 117        /// <summary>
 118        /// </summary>
 119        [JsonProperty(PropertyName = "primaryImageOfPage")]
 0120        public ImageObject PrimaryImageOfPage { get; private set; }
 121
 122    }
 123}