Share via


TrendingImagesCategory Constructors

Definition

Overloads

TrendingImagesCategory()

Initializes a new instance of the TrendingImagesCategory class.

TrendingImagesCategory(String, IList<TrendingImagesTile>)

Initializes a new instance of the TrendingImagesCategory class.

TrendingImagesCategory()

Initializes a new instance of the TrendingImagesCategory class.

public TrendingImagesCategory ();
Public Sub New ()

Applies to

TrendingImagesCategory(String, IList<TrendingImagesTile>)

Initializes a new instance of the TrendingImagesCategory class.

public TrendingImagesCategory (string title, System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Search.ImageSearch.Models.TrendingImagesTile> tiles);
new Microsoft.Azure.CognitiveServices.Search.ImageSearch.Models.TrendingImagesCategory : string * System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Search.ImageSearch.Models.TrendingImagesTile> -> Microsoft.Azure.CognitiveServices.Search.ImageSearch.Models.TrendingImagesCategory
Public Sub New (title As String, tiles As IList(Of TrendingImagesTile))

Parameters

title
String

The name of the image category. For example, Popular People Searches.

tiles
IList<TrendingImagesTile>

A list of images that are trending in the category. Each tile contains an image and a URL that returns more images of the subject. For example, if the category is Popular People Searches, the image is of a popular person and the URL would return more images of that person.

Applies to