IDictionaryObject Interface |
Namespace: Couchbase.Lite
public interface IDictionaryObject : IDictionaryFragment, IReadOnlyCollection<KeyValuePair<string, Object>>, IEnumerable<KeyValuePair<string, Object>>, IEnumerable
The IDictionaryObject type exposes the following members.
Name | Description | |
---|---|---|
![]() | Count | Gets the number of elements in the collection. (Inherited from IReadOnlyCollection<KeyValuePair<String, Object>>.) |
![]() | Item |
Gets the value of the given key, or lack thereof,
wrapped inside of a Fragment (Inherited from IDictionaryFragment.) |
![]() | Keys |
Gets all the keys held by this dictionary
|
Name | Description | |
---|---|---|
![]() | Contains |
Checks if a given key is present in the dictionary
|
![]() | GetArray |
Gets the value of a given key as an IArray |
![]() | GetBlob |
Gets the value of a given key as a Blob |
![]() | GetBoolean |
Gets the value of a given key as a Boolean |
![]() | GetDate |
Gets the value of a given key as a DateTimeOffset |
![]() | GetDictionary |
Gets the value of a given key as a readonly dictionary
|
![]() | GetDouble |
Gets the value of a given key as a Double |
![]() | GetEnumerator | Returns an enumerator that iterates through the collection. (Inherited from IEnumerable<KeyValuePair<String, Object>>.) |
![]() | GetFloat |
Gets the value of a given key as a Single |
![]() | GetInt |
Gets the value of a given key as an Int32 |
![]() | GetLong |
Gets the value of a given key as an Int64 |
![]() | GetObject |
Gets the value of a given key as an untyped object
|
![]() | GetString |
Gets the value of a given key as a String |
![]() | ToDictionary |
Converts this object to a standard .NET string to object
Dictionary<TKey, TValue> |