Interface IKeepWordsTokenFilter
A token filter of type keep that only keeps tokens with text contained in a predefined set of words.
Namespace: OpenSearch.Client
Assembly: OpenSearch.Client.dll
Syntax
public interface IKeepWordsTokenFilter : ITokenFilter
Properties
| Edit this page View SourceKeepWords
A list of words to keep.
Declaration
[DataMember(Name = "keep_words")]
IEnumerable<string> KeepWords { get; set; }
Property Value
Type | Description |
---|---|
IEnumerable<string> |
KeepWordsCase
A boolean indicating whether to lower case the words.
Declaration
[DataMember(Name = "keep_words_case")]
bool? KeepWordsCase { get; set; }
Property Value
Type | Description |
---|---|
bool? |
KeepWordsPath
A path to a words file.
Declaration
[DataMember(Name = "keep_words_path")]
string KeepWordsPath { get; set; }
Property Value
Type | Description |
---|---|
string |