Class DictionaryChangeSet
A DictionaryChangeSet describes the changes inside a IDictionary<TKey, TValue> since the last time the notification callback was invoked.
Namespace: Realms
Assembly: Realm.dll
Syntax
public class DictionaryChangeSet
Properties
| Edit this page View SourceDeletedKeys
Gets the keys in the IDictionary<TKey, TValue> which were deleted.
Declaration
public string[] DeletedKeys { get; }
Property Value
Type | Description |
---|---|
string[] | An array, containing the keys of the removed values. |
InsertedKeys
Gets the keys in the IDictionary<TKey, TValue> which were newly inserted.
Declaration
public string[] InsertedKeys { get; }
Property Value
Type | Description |
---|---|
string[] | An array, containing the keys of the inserted values. |
ModifiedKeys
Gets the keys in the IDictionary<TKey, TValue> whose values were modified.
Declaration
public string[] ModifiedKeys { get; }
Property Value
Type | Description |
---|---|
string[] | An array, containing the keys of the modified values. |