次の方法で共有


Images コンストラクター

定義

オーバーロード

Images()

Images クラスの新しいインスタンスを初期化します。

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

Images クラスの新しいインスタンスを初期化します。

Images()

Images クラスの新しいインスタンスを初期化します。

public Images();
Public Sub New ()

適用対象

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

Images クラスの新しいインスタンスを初期化します。

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)

パラメーター

value
IList<ImageObject>

クエリに関連するイメージ オブジェクトの一覧。 結果がない場合、リストは空です。

id
String

文字列識別子。

readLink
String

このリソースを返す URL。

webSearchUrl
String

このアイテムの検索結果Bing URL。

totalEstimatedMatches
Nullable<Int64>

クエリに関連する Web ページの推定数。 この数値を count および offset クエリ パラメーターと共に使用して、結果をページングします。

nextOffset
Nullable<Int32>

重複除去の一部として使用されます。 次の改ページ要求でクライアントが使用する次のオフセットをクライアントに通知します

適用対象