Partilhar via


IDocumentsOperations.SearchWithHttpMessagesAsync Método

Definição

Sobrecargas

SearchWithHttpMessagesAsync(String, SearchParameters, SearchRequestOptions, Dictionary<String,List<String>>, CancellationToken)

Pesquisa documentos no índice de pesquisa. https://docs.microsoft.com/rest/api/searchservice/Search-Documents

SearchWithHttpMessagesAsync<T>(String, SearchParameters, SearchRequestOptions, Dictionary<String,List<String>>, CancellationToken)

Pesquisa documentos no índice de pesquisa. https://docs.microsoft.com/rest/api/searchservice/Search-Documents

SearchWithHttpMessagesAsync(String, SearchParameters, SearchRequestOptions, Dictionary<String,List<String>>, CancellationToken)

Pesquisa documentos no índice de pesquisa. https://docs.microsoft.com/rest/api/searchservice/Search-Documents

public System.Threading.Tasks.Task<Microsoft.Rest.Azure.AzureOperationResponse<Microsoft.Azure.Search.Models.DocumentSearchResult<Microsoft.Azure.Search.Models.Document>>> SearchWithHttpMessagesAsync (string searchText, Microsoft.Azure.Search.Models.SearchParameters searchParameters, Microsoft.Azure.Search.Models.SearchRequestOptions searchRequestOptions = default, System.Collections.Generic.Dictionary<string,System.Collections.Generic.List<string>> customHeaders = default, System.Threading.CancellationToken cancellationToken = default);
abstract member SearchWithHttpMessagesAsync : string * Microsoft.Azure.Search.Models.SearchParameters * Microsoft.Azure.Search.Models.SearchRequestOptions * System.Collections.Generic.Dictionary<string, System.Collections.Generic.List<string>> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Rest.Azure.AzureOperationResponse<Microsoft.Azure.Search.Models.DocumentSearchResult<Microsoft.Azure.Search.Models.Document>>>
Public Function SearchWithHttpMessagesAsync (searchText As String, searchParameters As SearchParameters, Optional searchRequestOptions As SearchRequestOptions = Nothing, Optional customHeaders As Dictionary(Of String, List(Of String)) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of AzureOperationResponse(Of DocumentSearchResult(Of Document)))

Parâmetros

searchText
String

Uma expressão de consulta de pesquisa de texto completo; Use nulo ou "*" para corresponder a todos os documentos. Consulte https://docs.microsoft.com/rest/api/searchservice/Simple-query-syntax-in-Azure-Search para obter mais informações sobre a sintaxe da consulta de pesquisa.

searchParameters
SearchParameters

Parâmetros para refinar ainda mais a consulta de pesquisa.

searchRequestOptions
SearchRequestOptions

Parâmetros adicionais para a operação

customHeaders
Dictionary<String,List<String>>

Os cabeçalhos que serão adicionados à solicitação.

cancellationToken
CancellationToken

O token de cancelamento.

Retornos

Resposta que contém os documentos que correspondem à consulta.

Comentários

As sobrecargas não genéricas dos métodos Search, SearchAsync e SearchWithHttpMessagesAsync fazem uma tentativa de melhor esforço para mapear tipos JSON na carga de resposta para tipos .NET. Consulte GetWithHttpMessagesAsync(String, IEnumerable<String>, SearchRequestOptions, Dictionary<String,List<String>>, CancellationToken) para obter mais informações.

Se Azure Cognitive Search não puder incluir todos os resultados em uma única resposta, a resposta retornada incluirá um token de continuação que pode ser passado para ContinueSearch para recuperar mais resultados. Consulte DocumentSearchResult.ContinuationToken para obter mais informações.

Aplica-se a

SearchWithHttpMessagesAsync<T>(String, SearchParameters, SearchRequestOptions, Dictionary<String,List<String>>, CancellationToken)

Pesquisa documentos no índice de pesquisa. https://docs.microsoft.com/rest/api/searchservice/Search-Documents

public System.Threading.Tasks.Task<Microsoft.Rest.Azure.AzureOperationResponse<Microsoft.Azure.Search.Models.DocumentSearchResult<T>>> SearchWithHttpMessagesAsync<T> (string searchText, Microsoft.Azure.Search.Models.SearchParameters searchParameters, Microsoft.Azure.Search.Models.SearchRequestOptions searchRequestOptions = default, System.Collections.Generic.Dictionary<string,System.Collections.Generic.List<string>> customHeaders = default, System.Threading.CancellationToken cancellationToken = default);
abstract member SearchWithHttpMessagesAsync : string * Microsoft.Azure.Search.Models.SearchParameters * Microsoft.Azure.Search.Models.SearchRequestOptions * System.Collections.Generic.Dictionary<string, System.Collections.Generic.List<string>> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Rest.Azure.AzureOperationResponse<Microsoft.Azure.Search.Models.DocumentSearchResult<'T>>>
Public Function SearchWithHttpMessagesAsync(Of T) (searchText As String, searchParameters As SearchParameters, Optional searchRequestOptions As SearchRequestOptions = Nothing, Optional customHeaders As Dictionary(Of String, List(Of String)) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of AzureOperationResponse(Of DocumentSearchResult(Of T)))

Parâmetros de tipo

T

O tipo CLR que mapeia para o esquema de indexação. Instâncias desse tipo podem ser recuperadas como documentos do índice.

Parâmetros

searchText
String

Uma expressão de consulta de pesquisa de texto completo; Use nulo ou "*" para corresponder a todos os documentos. Consulte https://docs.microsoft.com/rest/api/searchservice/Simple-query-syntax-in-Azure-Search para obter mais informações sobre a sintaxe da consulta de pesquisa.

searchParameters
SearchParameters

Parâmetros para refinar ainda mais a consulta de pesquisa.

searchRequestOptions
SearchRequestOptions

Parâmetros adicionais para a operação

customHeaders
Dictionary<String,List<String>>

Os cabeçalhos que serão adicionados à solicitação.

cancellationToken
CancellationToken

O token de cancelamento.

Retornos

Resposta que contém os documentos que correspondem à consulta.

Comentários

As sobrecargas genéricas dos métodos Search, SearchAsync e SearchWithHttpMessagesAsync dão suporte ao mapeamento de tipos de campo de pesquisa para tipos .NET por meio do parâmetro de tipo T. Consulte GetWithHttpMessagesAsync<T>(String, IEnumerable<String>, SearchRequestOptions, Dictionary<String,List<String>>, CancellationToken) para obter mais detalhes sobre o mapeamento de tipo.

Se Azure Cognitive Search não puder incluir todos os resultados em uma única resposta, a resposta retornada incluirá um token de continuação que pode ser passado para ContinueSearch para recuperar mais resultados. Consulte DocumentSearchResult.ContinuationToken para obter mais informações.

Aplica-se a