Share via


KeywordMarkerTokenFilter Constructors

Definition

Overloads

KeywordMarkerTokenFilter()

Initializes a new instance of the KeywordMarkerTokenFilter class.

KeywordMarkerTokenFilter(String, IList<String>, Nullable<Boolean>)

Initializes a new instance of the KeywordMarkerTokenFilter class.

KeywordMarkerTokenFilter()

Source:
KeywordMarkerTokenFilter.cs

Initializes a new instance of the KeywordMarkerTokenFilter class.

public KeywordMarkerTokenFilter ();
Public Sub New ()

Applies to

KeywordMarkerTokenFilter(String, IList<String>, Nullable<Boolean>)

Source:
KeywordMarkerTokenFilter.cs

Initializes a new instance of the KeywordMarkerTokenFilter class.

public KeywordMarkerTokenFilter (string name, System.Collections.Generic.IList<string> keywords, bool? ignoreCase = default);
new Microsoft.Azure.Search.Models.KeywordMarkerTokenFilter : string * System.Collections.Generic.IList<string> * Nullable<bool> -> Microsoft.Azure.Search.Models.KeywordMarkerTokenFilter
Public Sub New (name As String, keywords As IList(Of String), Optional ignoreCase As Nullable(Of Boolean) = Nothing)

Parameters

name
String

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.

keywords
IList<String>

A list of words to mark as keywords.

ignoreCase
Nullable<Boolean>

A value indicating whether to ignore case. If true, all words are converted to lower case first. Default is false.

Applies to