Search Results for

    Show / Hide Table of Contents

    Interface IPathHierarchyTokenizer

    The path_hierarchy tokenizer takes something like this:

    /something/something/else

    And produces tokens:

    /something

    /something/something

    /something/something/else

    Inherited Members
    ITokenizer.Type
    ITokenizer.Version
    Namespace: OpenSearch.Client
    Assembly: OpenSearch.Client.dll
    Syntax
    public interface IPathHierarchyTokenizer : ITokenizer

    Properties

    | Edit this page View Source

    BufferSize

    The buffer size to use, defaults to 1024.

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

    Delimiter

    The character delimiter to use, defaults to /.

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

    Replacement

    An optional replacement character to use. Defaults to the delimiter

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

    Reverse

    Generates tokens in reverse order, defaults to false.

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

    Skip

    Controls initial tokens to skip, defaults to 0.

    Declaration
    [DataMember(Name = "skip")]
    int? Skip { get; set; }
    Property Value
    Type Description
    int?

    Extension Methods

    SuffixExtensions.Suffix(object, string)
    • Edit this page
    • View Source
    In this article
    • Properties
      • BufferSize
      • Delimiter
      • Replacement
      • Reverse
      • Skip
    • Extension Methods
    Back to top Generated by DocFX