< Summary

Class:Microsoft.Azure.CognitiveServices.Search.ImageSearch.Models.WebPage
Assembly:Microsoft.Azure.CognitiveServices.Search.BingImageSearch
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingImageSearch\src\Generated\ImageSearch\Models\WebPage.cs
Covered lines:0
Uncovered lines:4
Coverable lines:4
Total lines:60
Line coverage:0% (0 of 4)
Covered branches:0
Total branches:0

Metrics

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

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingImageSearch\src\Generated\ImageSearch\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.ImageSearch.Models
 8{
 9    using System.Collections;
 10    using System.Collections.Generic;
 11    using System.Linq;
 12
 13    /// <summary>
 14    /// Defines a webpage that is relevant to the query.
 15    /// </summary>
 16    public partial class WebPage : CreativeWork
 17    {
 18        /// <summary>
 19        /// Initializes a new instance of the WebPage class.
 20        /// </summary>
 021        public WebPage()
 22        {
 23            CustomInit();
 024        }
 25
 26        /// <summary>
 27        /// Initializes a new instance of the WebPage class.
 28        /// </summary>
 29        /// <param name="id">A String identifier.</param>
 30        /// <param name="readLink">The URL that returns this resource.</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="image">An image of the item.</param>
 38        /// <param name="description">A short description of the item.</param>
 39        /// <param name="alternateName">An alias for the item</param>
 40        /// <param name="bingId">An ID that uniquely identifies this
 41        /// item.</param>
 42        /// <param name="thumbnailUrl">The URL to a thumbnail of the
 43        /// item.</param>
 44        /// <param name="provider">The source of the creative work.</param>
 45        /// <param name="datePublished">The date on which the CreativeWork was
 46        /// published.</param>
 47        /// <param name="text">Text content of this creative work</param>
 48        public WebPage(string id = default(string), string readLink = default(string), string webSearchUrl = default(str
 049            : base(id, readLink, webSearchUrl, name, url, image, description, alternateName, bingId, thumbnailUrl, provi
 50        {
 51            CustomInit();
 052        }
 53
 54        /// <summary>
 55        /// An initialization method that performs custom operations like setting defaults
 56        /// </summary>
 57        partial void CustomInit();
 58
 59    }
 60}

Methods/Properties

.ctor()
.ctor(...)