Class StopAnalyzer
Divides text at non-letters; Applies the lowercase and stopword token filters. This analyzer is implemented using Apache Lucene.
Inherited Members
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.Search.Documents.dll
Syntax
public class StopAnalyzer : Azure.Search.Documents.Indexes.Models.LexicalAnalyzer
Constructors
StopAnalyzer(String)
Initializes a new instance of StopAnalyzer.
Declaration
public StopAnalyzer (string name);
Parameters
System.String
name
The name of the analyzer. 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
Stopwords
A list of stopwords.
Declaration
public System.Collections.Generic.IList<string> Stopwords { get; }
Property Value
System.Collections.Generic.IList<System.String>
|