Search Results for

    Show / Hide Table of Contents

    Class CompositeKey

    A key for a CompositeBucket

    Inheritance
    object
    IsAReadOnlyDictionaryBase<string, object>
    CompositeKey
    Implements
    IIsAReadOnlyDictionary<string, object>
    IReadOnlyDictionary<string, object>
    IReadOnlyCollection<KeyValuePair<string, object>>
    IEnumerable<KeyValuePair<string, object>>
    IEnumerable
    IIsAReadOnlyDictionary
    Inherited Members
    IsAReadOnlyDictionaryBase<string, object>.Count
    IsAReadOnlyDictionaryBase<string, object>.this[string]
    IsAReadOnlyDictionaryBase<string, object>.Keys
    IsAReadOnlyDictionaryBase<string, object>.Values
    IsAReadOnlyDictionaryBase<string, object>.BackingDictionary
    IsAReadOnlyDictionaryBase<string, object>.ContainsKey(string)
    IsAReadOnlyDictionaryBase<string, object>.TryGetValue(string, out object)
    IsAReadOnlyDictionaryBase<string, object>.Sanitize(string)
    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 CompositeKey : IsAReadOnlyDictionaryBase<string, object>, IIsAReadOnlyDictionary<string, object>, IReadOnlyDictionary<string, object>, IReadOnlyCollection<KeyValuePair<string, object>>, IEnumerable<KeyValuePair<string, object>>, IEnumerable, IIsAReadOnlyDictionary

    Constructors

    | Edit this page View Source

    CompositeKey(IReadOnlyDictionary<string, object>)

    Declaration
    public CompositeKey(IReadOnlyDictionary<string, object> backingDictionary)
    Parameters
    Type Name Description
    IReadOnlyDictionary<string, object> backingDictionary

    Methods

    | Edit this page View Source

    TryGetValue(string, out DateTime)

    Tries to get a value with the given key as a DateTime. Returns false if the key does not exist or cannot be converted to a DateTime.

    Declaration
    public bool TryGetValue(string key, out DateTime value)
    Parameters
    Type Name Description
    string key
    DateTime value
    Returns
    Type Description
    bool
    | Edit this page View Source

    TryGetValue(string, out DateTimeOffset)

    Tries to get a value with the given key as a DateTimeOffset. Returns false if the key does not exist or cannot be converted to a DateTimeOffset.

    Declaration
    public bool TryGetValue(string key, out DateTimeOffset value)
    Parameters
    Type Name Description
    string key
    DateTimeOffset value
    Returns
    Type Description
    bool
    | Edit this page View Source

    TryGetValue(string, out double)

    Tries to get a value with the given key as a double. Returns false if the key does not exist or is not a double.

    Declaration
    public bool TryGetValue(string key, out double value)
    Parameters
    Type Name Description
    string key
    double value
    Returns
    Type Description
    bool
    | Edit this page View Source

    TryGetValue(string, out int)

    Tries to get a value with the given key as a int. Returns false if the key does not exist or is not a int.

    Declaration
    public bool TryGetValue(string key, out int value)
    Parameters
    Type Name Description
    string key
    int value
    Returns
    Type Description
    bool
    | Edit this page View Source

    TryGetValue(string, out long)

    Tries to get a value with the given key as a long. Returns false if the key does not exist or is not a long.

    Declaration
    public bool TryGetValue(string key, out long value)
    Parameters
    Type Name Description
    string key
    long value
    Returns
    Type Description
    bool
    | Edit this page View Source

    TryGetValue(string, out string)

    Tries to get a value with the given key as a string. Returns false if the key does not exist or is not a string.

    Declaration
    public bool TryGetValue(string key, out string value)
    Parameters
    Type Name Description
    string key
    string value
    Returns
    Type Description
    bool

    Implements

    IIsAReadOnlyDictionary<TKey, TValue>
    IReadOnlyDictionary<TKey, TValue>
    IReadOnlyCollection<T>
    IEnumerable<T>
    IEnumerable
    IIsAReadOnlyDictionary

    Extension Methods

    SuffixExtensions.Suffix(object, string)
    • Edit this page
    • View Source
    In this article
    • Constructors
      • CompositeKey(IReadOnlyDictionary<string, object>)
    • Methods
      • TryGetValue(string, out DateTime)
      • TryGetValue(string, out DateTimeOffset)
      • TryGetValue(string, out double)
      • TryGetValue(string, out int)
      • TryGetValue(string, out long)
      • TryGetValue(string, out string)
    • Implements
    • Extension Methods
    Back to top Generated by DocFX