Class CompositeKey
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
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
Returns
|
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
Returns
|
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
Returns
|
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
Returns
|
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
Returns
|
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
Returns
Implements
Extension Methods