Share via


Images Constructors

Definition

Overloads

Images()

Initializes a new instance of the Images class.

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

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, IList<Query>, QueryContext, Nullable<Int64>, Nullable<Boolean>, Nullable<Int32>, IList<Query>, IList<Query>, IList<Query>)

Initializes a new instance of the Images class.

public Images (System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Search.WebSearch.Models.ImageObject> value, string id = default, string webSearchUrl = default, System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Search.WebSearch.Models.Query> followUpQueries = default, Microsoft.Azure.CognitiveServices.Search.WebSearch.Models.QueryContext queryContext = default, long? totalEstimatedMatches = default, bool? isFamilyFriendly = default, int? nextOffset = default, System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Search.WebSearch.Models.Query> queryExpansions = default, System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Search.WebSearch.Models.Query> similarTerms = default, System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Search.WebSearch.Models.Query> relatedSearches = default);
new Microsoft.Azure.CognitiveServices.Search.WebSearch.Models.Images : System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Search.WebSearch.Models.ImageObject> * string * string * System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Search.WebSearch.Models.Query> * Microsoft.Azure.CognitiveServices.Search.WebSearch.Models.QueryContext * Nullable<int64> * Nullable<bool> * Nullable<int> * System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Search.WebSearch.Models.Query> * System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Search.WebSearch.Models.Query> * System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Search.WebSearch.Models.Query> -> Microsoft.Azure.CognitiveServices.Search.WebSearch.Models.Images
Public Sub New (value As IList(Of ImageObject), Optional id As String = Nothing, Optional webSearchUrl As String = Nothing, Optional followUpQueries As IList(Of Query) = Nothing, Optional queryContext As QueryContext = Nothing, Optional totalEstimatedMatches As Nullable(Of Long) = Nothing, Optional isFamilyFriendly As Nullable(Of Boolean) = Nothing, Optional nextOffset As Nullable(Of Integer) = Nothing, Optional queryExpansions As IList(Of Query) = Nothing, Optional similarTerms As IList(Of Query) = Nothing, Optional relatedSearches As IList(Of Query) = 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.

webSearchUrl
String

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

followUpQueries
IList<Query>
queryContext
QueryContext
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.

isFamilyFriendly
Nullable<Boolean>
nextOffset
Nullable<Int32>
queryExpansions
IList<Query>
similarTerms
IList<Query>
relatedSearches
IList<Query>

Applies to