Class ElisionTokenFilter
Removes elisions. For example, "l'avion" (the plane) will be converted to "avion" (plane). This token filter is implemented using Apache Lucene.
Inherited Members
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.Search.Documents.dll
Syntax
public class ElisionTokenFilter : Azure.Search.Documents.Indexes.Models.TokenFilter
Constructors
ElisionTokenFilter(String)
Initializes a new instance of ElisionTokenFilter.
Declaration
public ElisionTokenFilter (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
Articles
The set of articles to remove.
Declaration
public System.Collections.Generic.IList<string> Articles { get; }
Property Value
System.Collections.Generic.IList<System.String>
|