Share via


StopAnalyzer Class

Definition

Divides text at non-letters; Applies the lowercase and stopword token filters. This analyzer is implemented using Apache Lucene.

public class StopAnalyzer : Azure.Search.Documents.Indexes.Models.LexicalAnalyzer
public class StopAnalyzer : Azure.Search.Documents.Indexes.Models.LexicalAnalyzer, System.ClientModel.Primitives.IJsonModel<Azure.Search.Documents.Indexes.Models.StopAnalyzer>, System.ClientModel.Primitives.IPersistableModel<Azure.Search.Documents.Indexes.Models.StopAnalyzer>
type StopAnalyzer = class
    inherit LexicalAnalyzer
type StopAnalyzer = class
    inherit LexicalAnalyzer
    interface IJsonModel<StopAnalyzer>
    interface IPersistableModel<StopAnalyzer>
Public Class StopAnalyzer
Inherits LexicalAnalyzer
Public Class StopAnalyzer
Inherits LexicalAnalyzer
Implements IJsonModel(Of StopAnalyzer), IPersistableModel(Of StopAnalyzer)
Inheritance
StopAnalyzer
Implements

Constructors

StopAnalyzer(String)

Initializes a new instance of StopAnalyzer.

Properties

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.

(Inherited from LexicalAnalyzer)
Stopwords

A list of stopwords.

Methods

JsonModelWriteCore(Utf8JsonWriter, ModelReaderWriterOptions)

Explicit Interface Implementations

IJsonModel<LexicalAnalyzer>.Create(Utf8JsonReader, ModelReaderWriterOptions)

Reads one JSON value (including objects or arrays) from the provided reader and converts it to a model.

(Inherited from LexicalAnalyzer)
IJsonModel<LexicalAnalyzer>.Write(Utf8JsonWriter, ModelReaderWriterOptions)

Writes the model to the provided Utf8JsonWriter.

(Inherited from LexicalAnalyzer)
IJsonModel<StopAnalyzer>.Create(Utf8JsonReader, ModelReaderWriterOptions)

Reads one JSON value (including objects or arrays) from the provided reader and converts it to a model.

IJsonModel<StopAnalyzer>.Write(Utf8JsonWriter, ModelReaderWriterOptions)

Writes the model to the provided Utf8JsonWriter.

IPersistableModel<LexicalAnalyzer>.Create(BinaryData, ModelReaderWriterOptions)

Converts the provided BinaryData into a model.

(Inherited from LexicalAnalyzer)
IPersistableModel<LexicalAnalyzer>.GetFormatFromOptions(ModelReaderWriterOptions)

Gets the data interchange format (JSON, Xml, etc) that the model uses when communicating with the service.

(Inherited from LexicalAnalyzer)
IPersistableModel<LexicalAnalyzer>.Write(ModelReaderWriterOptions)

Writes the model into a BinaryData.

(Inherited from LexicalAnalyzer)
IPersistableModel<StopAnalyzer>.Create(BinaryData, ModelReaderWriterOptions)

Converts the provided BinaryData into a model.

IPersistableModel<StopAnalyzer>.GetFormatFromOptions(ModelReaderWriterOptions)

Gets the data interchange format (JSON, Xml, etc) that the model uses when communicating with the service.

IPersistableModel<StopAnalyzer>.Write(ModelReaderWriterOptions)

Writes the model into a BinaryData.

Applies to