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

SearchIterator type

用于查询的搜索结果的迭代器。 将在迭代期间根据需要发出请求。 使用 .byPage () 每次迭代向服务器发出一个请求。

type SearchIterator<TModel, TFields> = PagedAsyncIterableIterator<
  SearchResult<TModel, TFields>,
  SearchDocumentsPageResult<TModel, TFields>,
  ListSearchResultsPageSettings
>