Search Results for

    Show / Hide Table of Contents

    Class DictionaryChangeSet

    A DictionaryChangeSet describes the changes inside a IDictionary<TKey,TValue> since the last time the notification callback was invoked.

    Inheritance
    Object
    DictionaryChangeSet
    Namespace: Realms
    Assembly: Realm.dll
    Syntax
    public class DictionaryChangeSet

    Properties

    | Improve this Doc View Source

    DeletedKeys

    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.

    | Improve this Doc View Source

    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.

    | Improve this Doc View Source

    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.

    • Improve this Doc
    • View Source
    In This Article
    Back to top Copyright © 2020 Realm
    Generated by DocFX