Compartilhar via


DictionaryDecompounderTokenFilter Construtores

Definição

Sobrecargas

DictionaryDecompounderTokenFilter()

Inicializa uma nova instância da classe DictionaryDecompounderTokenFilter.

DictionaryDecompounderTokenFilter(String, IList<String>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Boolean>)

Inicializa uma nova instância da classe DictionaryDecompounderTokenFilter.

DictionaryDecompounderTokenFilter()

Origem:
DictionaryDecompounderTokenFilter.cs

Inicializa uma nova instância da classe DictionaryDecompounderTokenFilter.

public DictionaryDecompounderTokenFilter ();
Public Sub New ()

Aplica-se a

DictionaryDecompounderTokenFilter(String, IList<String>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Boolean>)

Origem:
DictionaryDecompounderTokenFilter.cs

Inicializa uma nova instância da classe DictionaryDecompounderTokenFilter.

public DictionaryDecompounderTokenFilter (string name, System.Collections.Generic.IList<string> wordList, int? minWordSize = default, int? minSubwordSize = default, int? maxSubwordSize = default, bool? onlyLongestMatch = default);
new Microsoft.Azure.Search.Models.DictionaryDecompounderTokenFilter : string * System.Collections.Generic.IList<string> * Nullable<int> * Nullable<int> * Nullable<int> * Nullable<bool> -> Microsoft.Azure.Search.Models.DictionaryDecompounderTokenFilter
Public Sub New (name As String, wordList As IList(Of String), Optional minWordSize As Nullable(Of Integer) = Nothing, Optional minSubwordSize As Nullable(Of Integer) = Nothing, Optional maxSubwordSize As Nullable(Of Integer) = Nothing, Optional onlyLongestMatch As Nullable(Of Boolean) = Nothing)

Parâmetros

name
String

O nome do filtro de token. Deve conter apenas letras, números, espaços, traços ou sublinhados, pode começar e terminar apenas com caracteres alfanuméricos e está limitado a 128 caracteres.

wordList
IList<String>

A lista de palavras com as qual corresponder.

minWordSize
Nullable<Int32>

O tamanho mínimo da palavra. Somente palavras mais longas do que isso são processadas. O padrão é 5. O máximo é 300.

minSubwordSize
Nullable<Int32>

O tamanho mínimo da sub-palavra. Somente sub-palavras com mais tempo do que isso são geradas. O padrão é 2. O máximo é 300.

maxSubwordSize
Nullable<Int32>

O tamanho máximo da sub-palavra. Somente sub-palavras mais curtas do que essa são geradas. O padrão é 15. O máximo é 300.

onlyLongestMatch
Nullable<Boolean>

Um valor que indica se deve adicionar apenas a sub palavra correspondente mais longa à saída. O padrão é false.

Aplica-se a