IReadOnlyDictionary Interface |
Namespace: Couchbase.Lite
public interface IReadOnlyDictionary : IReadOnlyDictionaryFragment, IEnumerable<KeyValuePair<string, Object>>, IEnumerable
The IReadOnlyDictionary type exposes the following members.
| Name | Description | |
|---|---|---|
| Count |
Gets the number of entries in the dictionary
| |
| Item |
Gets the value of the given key, or lack thereof,
wrapped inside of a ReadOnlyFragment (Inherited from IReadOnlyDictionaryFragment.) | |
| 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 IReadOnlyArray | |
| 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.) | |
| 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
IDictionaryTKey, TValue |