Search Results for

    Show / Hide Table of Contents

    Class KeywordMarkerTokenFilter

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

    Inheritance
    object
    TokenFilterBase
    KeywordMarkerTokenFilter
    Implements
    IKeywordMarkerTokenFilter
    ITokenFilter
    Inherited Members
    TokenFilterBase.Type
    TokenFilterBase.Version
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: OpenSearch.Client
    Assembly: OpenSearch.Client.dll
    Syntax
    public class KeywordMarkerTokenFilter : TokenFilterBase, IKeywordMarkerTokenFilter, ITokenFilter

    Constructors

    | Edit this page View Source

    KeywordMarkerTokenFilter()

    Declaration
    public KeywordMarkerTokenFilter()

    Properties

    | Edit this page View Source

    IgnoreCase

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

    Declaration
    public 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
    public 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
    public 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
    public string KeywordsPattern { get; set; }
    Property Value
    Type Description
    string

    Implements

    IKeywordMarkerTokenFilter
    ITokenFilter

    Extension Methods

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