ImageTag Constructors

Definition

Overloads

ImageTag()

Initializes a new instance of the ImageTag class.

ImageTag(String, String, String, String, String, ImageObject, String, String, String, String, ImageTagRegion, IList<ImageAction>)

Initializes a new instance of the ImageTag class.

ImageTag()

Initializes a new instance of the ImageTag class.

public ImageTag ();
Public Sub New ()

Applies to

ImageTag(String, String, String, String, String, ImageObject, String, String, String, String, ImageTagRegion, IList<ImageAction>)

Initializes a new instance of the ImageTag class.

public ImageTag (string id = default, string readLink = default, string webSearchUrl = default, string name = default, string url = default, Microsoft.Azure.CognitiveServices.Search.VisualSearch.Models.ImageObject image = default, string description = default, string alternateName = default, string bingId = default, string displayName = default, Microsoft.Azure.CognitiveServices.Search.VisualSearch.Models.ImageTagRegion boundingBox = default, System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Search.VisualSearch.Models.ImageAction> actions = default);
new Microsoft.Azure.CognitiveServices.Search.VisualSearch.Models.ImageTag : string * string * string * string * string * Microsoft.Azure.CognitiveServices.Search.VisualSearch.Models.ImageObject * string * string * string * string * Microsoft.Azure.CognitiveServices.Search.VisualSearch.Models.ImageTagRegion * System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Search.VisualSearch.Models.ImageAction> -> Microsoft.Azure.CognitiveServices.Search.VisualSearch.Models.ImageTag
Public Sub New (Optional id As String = Nothing, Optional readLink As String = Nothing, Optional webSearchUrl As String = Nothing, Optional name As String = Nothing, Optional url As String = Nothing, Optional image As ImageObject = Nothing, Optional description As String = Nothing, Optional alternateName As String = Nothing, Optional bingId As String = Nothing, Optional displayName As String = Nothing, Optional boundingBox As ImageTagRegion = Nothing, Optional actions As IList(Of ImageAction) = Nothing)

Parameters

id
String

A String identifier.

readLink
String

The URL that returns this resource. To use the URL, append query parameters as appropriate and include the Ocp-Apim-Subscription-Key header.

webSearchUrl
String

The URL to Bing's search result for this item.

name
String

The name of the thing represented by this object.

url
String

The URL to get more information about the thing represented by this object.

image
ImageObject

An image of the item.

description
String

A short description of the item.

alternateName
String

An alias for the item.

bingId
String

An ID that uniquely identifies this item.

displayName
String

Display name for this tag. For the default tag, the display name is empty.

boundingBox
ImageTagRegion

The bounding box for this tag. For the default tag, there is no bounding box.

actions
IList<ImageAction>

Actions within this tag. The order of the items denotes the default ranking order of these actions, with the first action being the most likely user intent.

Applies to