Class AsciiFoldingTokenFilter
Converts alphabetic, numeric, and symbolic Unicode characters which are not in the first 127 ASCII characters (the "Basic Latin" Unicode block) into their ASCII equivalents, if such equivalents exist. This token filter is implemented using Apache Lucene.
Inherited Members
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.Search.Documents.dll
Syntax
public class AsciiFoldingTokenFilter : Azure.Search.Documents.Indexes.Models.TokenFilter
Constructors
AsciiFoldingTokenFilter(String)
Initializes a new instance of AsciiFoldingTokenFilter.
Declaration
public AsciiFoldingTokenFilter (string name);
Parameters
System.String
name
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. |
Exceptions
System.ArgumentNullException
|
Properties
PreserveOriginal
A value indicating whether the original token will be kept. Default is false.
Declaration
public Nullable<bool> PreserveOriginal { get; set; }
Property Value
System.Nullable<System.Boolean>
|