EdgeNGramTokenFilterV2 Class

Definition

Generates n-grams of the given size(s) starting from the front or the back of an input token. This token filter is implemented using Apache Lucene. http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/ngram/EdgeNGramTokenFilter.html

[Newtonsoft.Json.JsonObject("#Microsoft.Azure.Search.EdgeNGramTokenFilterV2")]
public class EdgeNGramTokenFilterV2 : Microsoft.Azure.Search.Models.TokenFilter
[<Newtonsoft.Json.JsonObject("#Microsoft.Azure.Search.EdgeNGramTokenFilterV2")>]
type EdgeNGramTokenFilterV2 = class
    inherit TokenFilter
Public Class EdgeNGramTokenFilterV2
Inherits TokenFilter
Inheritance
EdgeNGramTokenFilterV2
Attributes
Newtonsoft.Json.JsonObjectAttribute

Constructors

EdgeNGramTokenFilterV2()

Initializes a new instance of the EdgeNGramTokenFilterV2 class.

EdgeNGramTokenFilterV2(String, Nullable<Int32>, Nullable<Int32>, Nullable<EdgeNGramTokenFilterSide>)

Initializes a new instance of the EdgeNGramTokenFilterV2 class.

Properties

MaxGram

Gets or sets the maximum n-gram length. Default is 2. Maximum is 300.

MinGram

Gets or sets the minimum n-gram length. Default is 1. Maximum is 300. Must be less than the value of maxGram.

Name

Gets or sets 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.

(Inherited from TokenFilter)
Side

Gets or sets specifies which side of the input the n-gram should be generated from. Default is "front". Possible values include: 'front', 'back'

Methods

Validate()

Validate the object.

Applies to