Search Results for

    Show / Hide Table of Contents

    Interface IKeywordMarkerTokenFilter

    Protects words from being modified by stemmers. Must be placed before any stemming filters.

    Inherited Members
    ITokenFilter.Type
    ITokenFilter.Version
    Namespace: OpenSearch.Client
    Assembly: OpenSearch.Client.dll
    Syntax
    public interface IKeywordMarkerTokenFilter : ITokenFilter

    Properties

    | Edit this page View Source

    IgnoreCase

    Set to true to lower case all words first. Defaults to false.

    Declaration
    [DataMember(Name = "ignore_case")]
    bool? IgnoreCase { get; set; }
    Property Value
    Type Description
    bool?
    | Edit this page View Source

    Keywords

    A list of words to use.

    Cannot specify both KeywordsPattern and Keywords or KeywordsPath
    Declaration
    [DataMember(Name = "keywords")]
    IEnumerable<string> Keywords { get; set; }
    Property Value
    Type Description
    IEnumerable<string>
    | Edit this page View Source

    KeywordsPath

    A path (either relative to config location, or absolute) to a list of words.

    Cannot specify both KeywordsPattern and Keywords or KeywordsPath
    Declaration
    [DataMember(Name = "keywords_path")]
    string KeywordsPath { get; set; }
    Property Value
    Type Description
    string
    | Edit this page View Source

    KeywordsPattern

    A regular expression pattern to match against words in the text.

    Cannot specify both KeywordsPattern and Keywords or KeywordsPath
    Declaration
    [DataMember(Name = "keywords_pattern")]
    string KeywordsPattern { get; set; }
    Property Value
    Type Description
    string

    Extension Methods

    SuffixExtensions.Suffix(object, string)
    • Edit this page
    • View Source
    In this article
    • Properties
      • IgnoreCase
      • Keywords
      • KeywordsPath
      • KeywordsPattern
    • Extension Methods
    Back to top Generated by DocFX