IJsonSerializerConvertToDictionaryK, V Method |
Converts the object from its intermediary JSON dictionary class to a .NET dictionary,
if applicable.
Namespace:
Couchbase.Lite
Assembly:
Couchbase.Lite (in Couchbase.Lite.dll) Version: 1.4.1-b107
Syntax IDictionary<K, V> ConvertToDictionary<K, V>(
Object obj
)
Parameters
- obj
- Type: SystemObject
The object to try to convert
Type Parameters
- K
- The key type of the dictionary
- V
- The value type of the dictionary
Return Value
Type:
IDictionaryK,
VThe .NET dictionary, or null if the object cannot be converted
See Also