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)
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 |
Type Parameters
Name | Description |
---|---|
T | Type of the value contained in the dictionary. |