Class CjkBigramTokenFilter
Forms bigrams of CJK terms that are generated from the standard tokenizer. This token filter is implemented using Apache Lucene.
Inherited Members
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.Search.Documents.dll
Syntax
public class CjkBigramTokenFilter : Azure.Search.Documents.Indexes.Models.TokenFilter
Constructors
CjkBigramTokenFilter(String)
Initializes a new instance of CjkBigramTokenFilter.
Declaration
public CjkBigramTokenFilter (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
IgnoreScripts
The scripts to ignore.
Declaration
public System.Collections.Generic.IList<Azure.Search.Documents.Indexes.Models.CjkBigramTokenFilterScripts> IgnoreScripts { get; }
Property Value
System.Collections.Generic.IList<CjkBigramTokenFilterScripts>
|
OutputUnigrams
A value indicating whether to output both unigrams and bigrams (if true), or just bigrams (if false). Default is false.
Declaration
public Nullable<bool> OutputUnigrams { get; set; }
Property Value
System.Nullable<System.Boolean>
|