Delegate DictionaryNotificationCallbackDelegate<T>
A callback that will be invoked each time the contents of a IDictionary<TKey,TValue> have changed.
Namespace: Realms
Assembly: Realm.dll
Syntax
public delegate void DictionaryNotificationCallbackDelegate<T>(IDictionary<string, T> sender, DictionaryChangeSet changes, Exception error);
Parameters
Type | Name | Description |
---|---|---|
IDictionary<String, T> | sender | The IDictionary<TKey,TValue> being monitored for changes. |
DictionaryChangeSet | changes | The DictionaryChangeSet describing the changes to a IDictionary<TKey,TValue>,
or |
Exception | error | An exception that might have occurred while asynchronously monitoring a
IDictionary<TKey,TValue> for changes, or |
Type Parameters
Name | Description |
---|---|
T | Type of the RealmObject, EmbeddedObject, or primitive contained in the dictionary. |