IMutableDictionary Interface |
Namespace: Couchbase.Lite
public interface IMutableDictionary : IDictionaryObject, IDictionaryFragment, IReadOnlyCollection<KeyValuePair<string, Object>>, IEnumerable<KeyValuePair<string, Object>>, IEnumerable, IMutableDictionaryFragment
The IMutableDictionary 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 |
![]() | Keys |
Gets all the keys held by this dictionary
(Inherited from IDictionaryObject.) |
Name | Description | |
---|---|---|
![]() | Contains |
Checks if a given key is present in the dictionary
(Inherited from IDictionaryObject.) |
![]() | GetArray |
Gets the value of a given key as an IMutableArray |
![]() | GetBlob |
Gets the value of a given key as a Blob (Inherited from IDictionaryObject.) |
![]() | GetBoolean |
Gets the value of a given key as a Boolean (Inherited from IDictionaryObject.) |
![]() | GetDate |
Gets the value of a given key as a DateTimeOffset (Inherited from IDictionaryObject.) |
![]() | GetDictionary |
Gets the value of a given key as a dictionary
|
![]() | GetDouble |
Gets the value of a given key as a Double (Inherited from IDictionaryObject.) |
![]() | 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 (Inherited from IDictionaryObject.) |
![]() | GetInt |
Gets the value of a given key as an Int32 (Inherited from IDictionaryObject.) |
![]() | GetLong |
Gets the value of a given key as an Int64 (Inherited from IDictionaryObject.) |
![]() | GetObject |
Gets the value of a given key as an untyped object
(Inherited from IDictionaryObject.) |
![]() | GetString |
Gets the value of a given key as a String (Inherited from IDictionaryObject.) |
![]() | Remove |
Removes the given key from this dictionary
|
![]() | Set(IDictionary<String, Object>) |
Replaces the contents of this dictionary with the contents of the
given one
|
![]() | Set(String, Blob) |
Sets the given key to the given value
|
![]() | Set(String, MutableArray) |
Sets the given key to the given value
|
![]() | Set(String, MutableDictionary) |
Sets the given key to the given value
|
![]() | Set(String, Boolean) |
Sets the given key to the given value
|
![]() | Set(String, DateTimeOffset) |
Sets the given key to the given value
|
![]() | Set(String, Double) |
Sets the given key to the given value
|
![]() | Set(String, Int32) |
Sets the given key to the given value
|
![]() | Set(String, Int64) |
Sets the given key to the given value
|
![]() | Set(String, Object) |
Sets the given key to the given value
|
![]() | Set(String, Single) |
Sets the given key to the given value
|
![]() | Set(String, String) |
Sets the given key to the given value
|
![]() | ToDictionary |
Converts this object to a standard .NET string to object
Dictionary<TKey, TValue> (Inherited from IDictionaryObject.) |