IDictionaryObject Interface |
Namespace: Couchbase.Lite
public interface IDictionaryObject : IDictionaryFragment, IEnumerable<KeyValuePair<string, Object>>, IEnumerable
The IDictionaryObject type exposes the following members.
Name | Description | |
---|---|---|
Count |
Gets the number of entries in this dictionary
| |
Item |
Gets the value of the given key, or lack thereof,
wrapped inside of a IFragment (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 IEnumerableKeyValuePairString, 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 | |
GetString |
Gets the value of a given key as a String | |
GetValue |
Gets the value of a given key as an untyped object
| |
ToDictionary |
Converts this object to a standard .NET string to object
DictionaryTKey, TValue |