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

    | Edit this page 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.

    | Edit this page 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.

    | Edit this page 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.

    • Edit this page
    • View Source
    In this article
    Back to top Copyright © 2020-2024 Realm
    Generated by DocFX