Share via


Images Constructors

Definition

Overloads

Images()

Initializes a new instance of the Images class.

Images(IList<ImageObject>, String, String, String, Nullable<Int64>, Nullable<Int32>)

Initializes a new instance of the Images class.

Images()

Initializes a new instance of the Images class.

public Images ();
Public Sub New ()

Applies to

Images(IList<ImageObject>, String, String, String, Nullable<Int64>, Nullable<Int32>)

Initializes a new instance of the Images class.

public Images (System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Search.CustomImageSearch.Models.ImageObject> value, string id = default, string readLink = default, string webSearchUrl = default, long? totalEstimatedMatches = default, int? nextOffset = default);
new Microsoft.Azure.CognitiveServices.Search.CustomImageSearch.Models.Images : System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Search.CustomImageSearch.Models.ImageObject> * string * string * string * Nullable<int64> * Nullable<int> -> Microsoft.Azure.CognitiveServices.Search.CustomImageSearch.Models.Images
Public Sub New (value As IList(Of ImageObject), Optional id As String = Nothing, Optional readLink As String = Nothing, Optional webSearchUrl As String = Nothing, Optional totalEstimatedMatches As Nullable(Of Long) = Nothing, Optional nextOffset As Nullable(Of Integer) = Nothing)

Parameters

value
IList<ImageObject>

A list of image objects that are relevant to the query. If there are no results, the List is empty.

id
String

A String identifier.

readLink
String

The URL that returns this resource.

webSearchUrl
String

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

totalEstimatedMatches
Nullable<Int64>

The estimated number of webpages that are relevant to the query. Use this number along with the count and offset query parameters to page the results.

nextOffset
Nullable<Int32>

Used as part of deduping. Tells client the next offset that client should use in the next pagination request

Applies to