< Summary

Class:Microsoft.Azure.CognitiveServices.Search.VisualSearch.Models.ImageEntityAction
Assembly:Microsoft.Azure.CognitiveServices.Search.BingVisualSearch
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingVisualSearch\src\Generated\Models\ImageEntityAction.cs
Covered lines:0
Uncovered lines:4
Coverable lines:4
Total lines:71
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.BingVisualSearch\src\Generated\Models\ImageEntityAction.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.VisualSearch.Models
 8{
 9    using System.Collections;
 10    using System.Collections.Generic;
 11    using System.Linq;
 12
 13    /// <summary>
 14    /// Defines an entity action.
 15    /// </summary>
 16    public partial class ImageEntityAction : ImageAction
 17    {
 18        /// <summary>
 19        /// Initializes a new instance of the ImageEntityAction class.
 20        /// </summary>
 021        public ImageEntityAction()
 22        {
 23            CustomInit();
 024        }
 25
 26        /// <summary>
 27        /// Initializes a new instance of the ImageEntityAction class.
 28        /// </summary>
 29        /// <param name="id">A String identifier.</param>
 30        /// <param name="readLink">The URL that returns this resource. To use
 31        /// the URL, append query parameters as appropriate and include the
 32        /// Ocp-Apim-Subscription-Key header.</param>
 33        /// <param name="webSearchUrl">The URL to Bing's search result for this
 34        /// item.</param>
 35        /// <param name="name">The name of the thing represented by this
 36        /// object.</param>
 37        /// <param name="url">The URL to get more information about the thing
 38        /// represented by this object.</param>
 39        /// <param name="image">An image of the item.</param>
 40        /// <param name="description">A short description of the item.</param>
 41        /// <param name="alternateName">An alias for the item.</param>
 42        /// <param name="bingId">An ID that uniquely identifies this
 43        /// item.</param>
 44        /// <param name="thumbnailUrl">The URL to a thumbnail of the
 45        /// item.</param>
 46        /// <param name="provider">The source of the creative work.</param>
 47        /// <param name="datePublished">The date on which the CreativeWork was
 48        /// published.</param>
 49        /// <param name="text">Text content of this creative work.</param>
 50        /// <param name="result">The result produced in the action.</param>
 51        /// <param name="displayName">A display name for the action.</param>
 52        /// <param name="isTopAction">A Boolean representing whether this
 53        /// result is the top action.</param>
 54        /// <param name="serviceUrl">Use this URL to get additional data to
 55        /// determine how to take the appropriate action. For example, the
 56        /// serviceUrl might return JSON along with an image URL.</param>
 57        /// <param name="actionType">A string representing the type of
 58        /// action.</param>
 59        public ImageEntityAction(string id = default(string), string readLink = default(string), string webSearchUrl = d
 060            : base(id, readLink, webSearchUrl, name, url, image, description, alternateName, bingId, thumbnailUrl, provi
 61        {
 62            CustomInit();
 063        }
 64
 65        /// <summary>
 66        /// An initialization method that performs custom operations like setting defaults
 67        /// </summary>
 68        partial void CustomInit();
 69
 70    }
 71}

Methods/Properties

.ctor()
.ctor(...)