你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
AsyncPageable<T> 类
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
值集合,这些值可能需要多个服务请求进行循环访问。
public abstract class AsyncPageable<T> : System.Collections.Generic.IAsyncEnumerable<T>
type AsyncPageable<'T> = class
interface IAsyncEnumerable<'T>
Public MustInherit Class AsyncPageable(Of T)
Implements IAsyncEnumerable(Of T)
类型参数
- T
值的类型。
- 继承
-
AsyncPageable<T>
- 实现
示例
使用 async foreach
循环枚举 AsyncPageable 的示例:
// call a service method, which returns AsyncPageable<T>
AsyncPageable<SecretProperties> allSecretProperties = client.GetPropertiesOfSecretsAsync();
await foreach (SecretProperties secretProperties in allSecretProperties)
{
Console.WriteLine(secretProperties.Name);
}
或使用 while 循环:
// call a service method, which returns AsyncPageable<T>
AsyncPageable<SecretProperties> allSecretProperties = client.GetPropertiesOfSecretsAsync();
IAsyncEnumerator<SecretProperties> enumerator = allSecretProperties.GetAsyncEnumerator();
try
{
while (await enumerator.MoveNextAsync())
{
SecretProperties secretProperties = enumerator.Current;
Console.WriteLine(secretProperties.Name);
}
}
finally
{
await enumerator.DisposeAsync();
}
构造函数
AsyncPageable<T>() |
初始化 类的新实例 AsyncPageable<T> 进行模拟。 |
AsyncPageable<T>(CancellationToken) |
初始化 AsyncPageable<T> 类的新实例。 |
属性
CancellationToken |
获取 CancellationToken 用于异步枚举时发出的请求的 。 |
方法
AsPages(String, Nullable<Int32>) |
一次枚举 值 Page<T> 。 这可能会发出多个服务请求。 |
FromPages(IEnumerable<Page<T>>) |
使用提供的页面创建 的 Pageable<T> 实例。 |
GetAsyncEnumerator(CancellationToken) |
异步枚举集合中的值。 这可能会发出多个服务请求。 |