NGramTokenFilterV2 Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Generates n-grams of the given size(s). This token filter is implemented using Apache Lucene. http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/ngram/NGramTokenFilter.html
[Newtonsoft.Json.JsonObject("#Microsoft.Azure.Search.NGramTokenFilterV2")]
public class NGramTokenFilterV2 : Microsoft.Azure.Search.Models.TokenFilter
[<Newtonsoft.Json.JsonObject("#Microsoft.Azure.Search.NGramTokenFilterV2")>]
type NGramTokenFilterV2 = class
inherit TokenFilter
Public Class NGramTokenFilterV2
Inherits TokenFilter
- Inheritance
- Attributes
-
Newtonsoft.Json.JsonObjectAttribute
Constructors
NGramTokenFilterV2() |
Initializes a new instance of the NGramTokenFilterV2 class. |
NGramTokenFilterV2(String, Nullable<Int32>, Nullable<Int32>) |
Initializes a new instance of the NGramTokenFilterV2 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) |
Methods
Validate() |
Validate the object. |
Applies to
Azure SDK for .NET