Tokenizer Constructors

Definition

Overloads

Tokenizer()

Initializes a new instance of the Tokenizer class.

Tokenizer(String)

Initializes a new instance of the Tokenizer class.

Tokenizer()

Source:
Tokenizer.cs

Initializes a new instance of the Tokenizer class.

public Tokenizer ();
Public Sub New ()

Applies to

Tokenizer(String)

Source:
Tokenizer.cs

Initializes a new instance of the Tokenizer class.

public Tokenizer (string name);
new Microsoft.Azure.Search.Models.Tokenizer : string -> Microsoft.Azure.Search.Models.Tokenizer
Public Sub New (name As String)

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.

Applies to