Share via


AsciiFoldingTokenFilter Constructors

Definition

Overloads

AsciiFoldingTokenFilter()

Initializes a new instance of the AsciiFoldingTokenFilter class.

AsciiFoldingTokenFilter(String, Nullable<Boolean>)

Initializes a new instance of the AsciiFoldingTokenFilter class.

AsciiFoldingTokenFilter()

Source:
AsciiFoldingTokenFilter.cs

Initializes a new instance of the AsciiFoldingTokenFilter class.

public AsciiFoldingTokenFilter ();
Public Sub New ()

Applies to

AsciiFoldingTokenFilter(String, Nullable<Boolean>)

Source:
AsciiFoldingTokenFilter.cs

Initializes a new instance of the AsciiFoldingTokenFilter class.

public AsciiFoldingTokenFilter (string name, bool? preserveOriginal = default);
new Microsoft.Azure.Search.Models.AsciiFoldingTokenFilter : string * Nullable<bool> -> Microsoft.Azure.Search.Models.AsciiFoldingTokenFilter
Public Sub New (name As String, Optional preserveOriginal As Nullable(Of Boolean) = Nothing)

Parameters

name
String

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

preserveOriginal
Nullable<Boolean>

A value indicating whether the original token will be kept. Default is false.

Applies to