AnalyzerPropertiesStopWords Property |
An Analyzer is capable of removing
specified tokens from the input.
It uses binary comparison to
determine if an input token should
be discarded. It checks for exact
matches. If the input contains only
a substring that matches one of the
defined stopwords, then it is not discarded.
Longer inputs such as prefixes of
stopwords are also not discarded.
Namespace:
ArangoDBNetStandard.AnalyzerApi.Models
Assembly:
ArangoDBNetStandard (in ArangoDBNetStandard.dll) Version: 1.1.0
Syntax public List<string> StopWords { get; set; }
Public Property StopWords As List(Of String)
Get
Set
public:
property List<String^>^ StopWords {
List<String^>^ get ();
void set (List<String^>^ value);
}
member StopWords : List<string> with get, set
Property Value
Type:
ListStringSee Also