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

QueryResponse<T> 类

定义

一组可迭代的查询项。

public class QueryResponse<T> : System.Collections.Generic.IEnumerable<T>
public class QueryResponse<T>
type QueryResponse<'T> = class
    interface seq<'T>
    interface IEnumerable
type QueryResponse<'T> = class
Public Class QueryResponse(Of T)
Implements IEnumerable(Of T)
Public Class QueryResponse(Of T)

类型参数

T

查询项的类型。 例如,使用“SELECT * FROM devices”等查询时,此类型应为 类型 ClientTwin。 使用“SELECT * FROM devices.jobs”等查询时,此类型应为 类型 ScheduledJob

继承
QueryResponse<T>
实现

构造函数

QueryResponse<T>(IEnumerable<T>, String)

实例化代表 IQuery 请求结果的模板类的 QueryResponse

属性

ContinuationToken

获取用于继续枚举的继续标记。

Current

获取查询结果当前页中的当前项。 无需推进查询即可多次调用。

CurrentPage

查询项的当前页。

方法

GetEnumerator()

一组可迭代的查询项。

MoveNextAsync(QueryOptions, CancellationToken)

前进到查询结果的下一个元素。

显式接口实现

IEnumerable.GetEnumerator()

一组可迭代的查询项。

适用于