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

DocumentsOperationsExtensions.ContinueSearchAsync 方法

定义

重载

ContinueSearchAsync(IDocumentsOperations, SearchContinuationToken, SearchRequestOptions, CancellationToken)

从搜索索引检索下一页搜索结果。 https://docs.microsoft.com/rest/api/searchservice/Search-Documents

ContinueSearchAsync<T>(IDocumentsOperations, SearchContinuationToken, SearchRequestOptions, CancellationToken)

从搜索索引检索下一页搜索结果。 https://docs.microsoft.com/rest/api/searchservice/Search-Documents

ContinueSearchAsync(IDocumentsOperations, SearchContinuationToken, SearchRequestOptions, CancellationToken)

Source:
DocumentsOperationsExtensions.cs

从搜索索引检索下一页搜索结果。 https://docs.microsoft.com/rest/api/searchservice/Search-Documents

public static System.Threading.Tasks.Task<Microsoft.Azure.Search.Models.DocumentSearchResult<Microsoft.Azure.Search.Models.Document>> ContinueSearchAsync (this Microsoft.Azure.Search.IDocumentsOperations operations, Microsoft.Azure.Search.Models.SearchContinuationToken continuationToken, Microsoft.Azure.Search.Models.SearchRequestOptions searchRequestOptions = default, System.Threading.CancellationToken cancellationToken = default);
static member ContinueSearchAsync : Microsoft.Azure.Search.IDocumentsOperations * Microsoft.Azure.Search.Models.SearchContinuationToken * Microsoft.Azure.Search.Models.SearchRequestOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.Search.Models.DocumentSearchResult<Microsoft.Azure.Search.Models.Document>>
<Extension()>
Public Function ContinueSearchAsync (operations As IDocumentsOperations, continuationToken As SearchContinuationToken, Optional searchRequestOptions As SearchRequestOptions = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of DocumentSearchResult(Of Document))

参数

operations
IDocumentsOperations

此扩展方法的操作组。

continuationToken
SearchContinuationToken

封装从索引中提取下一页搜索结果所需的状态。

searchRequestOptions
SearchRequestOptions

操作的其他参数

cancellationToken
CancellationToken

取消标记。

返回

包含与查询匹配的文档的响应。

注解

ContinueSearch、ContinueSearchAsync 和 ContinueSearchWithHttpMessagesAsync 方法的非泛型重载会尽力尝试将响应有效负载中的 JSON 类型映射到 .NET 类型。 有关详细信息,请参阅GetWithHttpMessagesAsync(String, IEnumerable<String>, SearchRequestOptions, Dictionary<String,List<String>>, CancellationToken)

如果Azure 认知搜索无法在单个响应中包含所有结果,则返回的响应将包含一个可传递给 ContinueSearch 以检索更多结果的延续标记。 有关详细信息,请参阅DocumentSearchResult.ContinuationToken

请注意,此方法并非旨在帮助实现搜索结果的分页。 可以使用 方法的 TopSkip 参数 Search 实现分页。

适用于

ContinueSearchAsync<T>(IDocumentsOperations, SearchContinuationToken, SearchRequestOptions, CancellationToken)

Source:
DocumentsOperationsExtensions.cs

从搜索索引检索下一页搜索结果。 https://docs.microsoft.com/rest/api/searchservice/Search-Documents

public static System.Threading.Tasks.Task<Microsoft.Azure.Search.Models.DocumentSearchResult<T>> ContinueSearchAsync<T> (this Microsoft.Azure.Search.IDocumentsOperations operations, Microsoft.Azure.Search.Models.SearchContinuationToken continuationToken, Microsoft.Azure.Search.Models.SearchRequestOptions searchRequestOptions = default, System.Threading.CancellationToken cancellationToken = default);
static member ContinueSearchAsync : Microsoft.Azure.Search.IDocumentsOperations * Microsoft.Azure.Search.Models.SearchContinuationToken * Microsoft.Azure.Search.Models.SearchRequestOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.Search.Models.DocumentSearchResult<'T>>
<Extension()>
Public Function ContinueSearchAsync(Of T) (operations As IDocumentsOperations, continuationToken As SearchContinuationToken, Optional searchRequestOptions As SearchRequestOptions = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of DocumentSearchResult(Of T))

类型参数

T

映射到索引架构的 CLR 类型。 此类型的实例可以作为文档从索引中检索。

参数

operations
IDocumentsOperations

此扩展方法的操作组。

continuationToken
SearchContinuationToken

封装从索引中提取下一页搜索结果所需的状态。

searchRequestOptions
SearchRequestOptions

操作的其他参数

cancellationToken
CancellationToken

取消标记。

返回

包含与查询匹配的文档的响应。

注解

ContinueSearch、ContinueSearchAsync 和 ContinueSearchWithHttpMessagesAsync 方法的泛型重载支持通过类型参数 T 将搜索字段类型映射到 .NET 类型。有关类型映射的更多详细信息,请参阅 GetWithHttpMessagesAsync<T>(String, IEnumerable<String>, SearchRequestOptions, Dictionary<String,List<String>>, CancellationToken)

如果Azure 认知搜索无法在单个响应中包含所有结果,则返回的响应将包含一个可传递给 ContinueSearch 以检索更多结果的延续标记。 有关详细信息,请参阅DocumentSearchResult.ContinuationToken

请注意,此方法并非旨在帮助实现搜索结果的分页。 可以使用 方法的 TopSkip 参数 Search 实现分页。

适用于