Share via


NGramTokenizer Constructors

Definition

Overloads

NGramTokenizer()

Initializes a new instance of the NGramTokenizer class.

NGramTokenizer(String, Nullable<Int32>, Nullable<Int32>, IList<TokenCharacterKind>)

Initializes a new instance of the NGramTokenizer class.

NGramTokenizer()

Source:
NGramTokenizer.cs

Initializes a new instance of the NGramTokenizer class.

public NGramTokenizer ();
Public Sub New ()

Applies to

NGramTokenizer(String, Nullable<Int32>, Nullable<Int32>, IList<TokenCharacterKind>)

Source:
NGramTokenizer.cs

Initializes a new instance of the NGramTokenizer class.

public NGramTokenizer (string name, int? minGram = default, int? maxGram = default, System.Collections.Generic.IList<Microsoft.Azure.Search.Models.TokenCharacterKind> tokenChars = default);
new Microsoft.Azure.Search.Models.NGramTokenizer : string * Nullable<int> * Nullable<int> * System.Collections.Generic.IList<Microsoft.Azure.Search.Models.TokenCharacterKind> -> Microsoft.Azure.Search.Models.NGramTokenizer
Public Sub New (name As String, Optional minGram As Nullable(Of Integer) = Nothing, Optional maxGram As Nullable(Of Integer) = Nothing, Optional tokenChars As IList(Of TokenCharacterKind) = Nothing)

Parameters

name
String

The name of the tokenizer. It must only contain letters, digits, spaces, dashes or underscores, can only start and end with alphanumeric characters, and is limited to 128 characters.

minGram
Nullable<Int32>

The minimum n-gram length. Default is 1. Maximum is 300. Must be less than the value of maxGram.

maxGram
Nullable<Int32>

The maximum n-gram length. Default is 2. Maximum is 300.

tokenChars
IList<TokenCharacterKind>

Character classes to keep in the tokens.

Applies to