SearchIndexClient.AnalyzeTextAsync Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Muestra cómo un analizador divide el texto en tokens.
public virtual System.Threading.Tasks.Task<Azure.Response<System.Collections.Generic.IReadOnlyList<Azure.Search.Documents.Indexes.Models.AnalyzedTokenInfo>>> AnalyzeTextAsync (string indexName, Azure.Search.Documents.Indexes.Models.AnalyzeTextOptions options, System.Threading.CancellationToken cancellationToken = default);
abstract member AnalyzeTextAsync : string * Azure.Search.Documents.Indexes.Models.AnalyzeTextOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<System.Collections.Generic.IReadOnlyList<Azure.Search.Documents.Indexes.Models.AnalyzedTokenInfo>>>
override this.AnalyzeTextAsync : string * Azure.Search.Documents.Indexes.Models.AnalyzeTextOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<System.Collections.Generic.IReadOnlyList<Azure.Search.Documents.Indexes.Models.AnalyzedTokenInfo>>>
Public Overridable Function AnalyzeTextAsync (indexName As String, options As AnalyzeTextOptions, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response(Of IReadOnlyList(Of AnalyzedTokenInfo)))
Parámetros
- indexName
- String
Nombre del índice utilizado para probar un analizador.
- options
- AnalyzeTextOptions
AnalyzeTextOptions que contiene el texto y los componentes del analizador o analizador que se van a probar.
- cancellationToken
- CancellationToken
Opcional CancellationToken para propagar las notificaciones que se deben cancelar en la operación.
Devoluciones
del Response<T> servidor que contiene una lista de AnalyzedTokenInfo texto analizado.
Excepciones
Se inicia cuando indexName
o options
es NULL.
Se produce cuando el servicio Search devuelve un error.
Se aplica a
Azure SDK for .NET