Search Results for

    Show / Hide Table of Contents

    Delegate NotificationCallbackDelegate<T>

    A callback that will be invoked each time the contents of a IRealmCollection<T> have changed.

    Namespace: Realms
    Assembly: Realm.dll
    Syntax
    public delegate void NotificationCallbackDelegate<in T>(IRealmCollection<T> sender, ChangeSet changes, Exception error);
    Parameters
    Type Name Description
    IRealmCollection<T> sender

    The IRealmCollection<T> being monitored for changes.

    ChangeSet changes

    The ChangeSet describing the changes to a IRealmCollection<T>, or null if an error has occurred.

    Exception error

    An exception that might have occurred while asynchronously monitoring a IRealmCollection<T> for changes, or null if no errors have occurred.

    Type Parameters
    Name Description
    T

    Type of the RealmObject, EmbeddedObject, or primitive which is being returned.

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