Realm Xamarin  v0.80.0
Realm for Xamarin
Public Attributes | List of all members
RealmResults< T >.ChangeSet Class Reference

A ChangeSet describes the changes inside a RealmResults<T> since the last time the notification callback was invoked. More...

Public Attributes

readonly int [] DeletedIndices
 The indices of objects in the previous version of the RealmResults<T> which have been removed from this one. More...
 
readonly int [] InsertedIndices
 The indices in the new version of the RealmResults<T> which were newly inserted. More...
 
readonly int [] ModifiedIndices
 The indices in the new version of the RealmResults<T> which were modified. This means that the property of an object at that index was modified or the property of another object it's related to. More...
 

Detailed Description

A ChangeSet describes the changes inside a RealmResults<T> since the last time the notification callback was invoked.

Member Data Documentation

§ DeletedIndices

readonly int [] DeletedIndices

The indices of objects in the previous version of the RealmResults<T> which have been removed from this one.

§ InsertedIndices

readonly int [] InsertedIndices

The indices in the new version of the RealmResults<T> which were newly inserted.

§ ModifiedIndices

readonly int [] ModifiedIndices

The indices in the new version of the RealmResults<T> which were modified. This means that the property of an object at that index was modified or the property of another object it's related to.