你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

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>

与查询相关的图像对象列表。 如果没有结果,则 List 为空。

id
String

字符串标识符。

readLink
String

返回此资源的 URL。

webSearchUrl
String

指向此项目的必应搜索结果的 URL。

totalEstimatedMatches
Nullable<Int64>

与查询相关的估计网页数。 将此数字与 count 和 offset 查询参数一起用于对结果进行分页。

nextOffset
Nullable<Int32>

用作杜减的一部分。 告知客户端客户端应在下一个分页请求中使用的下一个偏移量

适用于