EdgeNGramTokenFilter Constructors

Definition

Overloads

EdgeNGramTokenFilter()

Initializes a new instance of the EdgeNGramTokenFilter class.

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

Initializes a new instance of the EdgeNGramTokenFilter class.

EdgeNGramTokenFilter()

Source:
EdgeNGramTokenFilter.cs

Initializes a new instance of the EdgeNGramTokenFilter class.

public EdgeNGramTokenFilter ();
Public Sub New ()

Applies to

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

Source:
EdgeNGramTokenFilter.cs

Initializes a new instance of the EdgeNGramTokenFilter class.

public EdgeNGramTokenFilter (string name, int? minGram = default, int? maxGram = default, Microsoft.Azure.Search.Models.EdgeNGramTokenFilterSide? side = default);
new Microsoft.Azure.Search.Models.EdgeNGramTokenFilter : string * Nullable<int> * Nullable<int> * Nullable<Microsoft.Azure.Search.Models.EdgeNGramTokenFilterSide> -> Microsoft.Azure.Search.Models.EdgeNGramTokenFilter
Public Sub New (name As String, Optional minGram As Nullable(Of Integer) = Nothing, Optional maxGram As Nullable(Of Integer) = Nothing, Optional side As Nullable(Of EdgeNGramTokenFilterSide) = Nothing)

Parameters

name
String
minGram
Nullable<Int32>
maxGram
Nullable<Int32>

Applies to