Interface IChangeSetDetails
An object containing information about the insertions, deletions, and modifications performed on a single collection of a certain object type.
Namespace: Realms.Server
Assembly: Realm.dll
Syntax
public interface IChangeSetDetails
Properties
| Improve this Doc View SourceDeletions
Gets a collection of the objects that have been deleted from the collection, at the version just prior to their deletion.
Declaration
IReadOnlyList<dynamic> Deletions { get; }
Property Value
Type | Description |
---|---|
IReadOnlyList<Object> | An array of RealmObjects. |
Insertions
Gets a collection of objects that have been inserted to the collection.
Declaration
IReadOnlyList<dynamic> Insertions { get; }
Property Value
Type | Description |
---|---|
IReadOnlyList<Object> | An array of RealmObjects. |
Modifications
Gets a collection of IModificationDetails instances, describing the objects that have been modified in the collection.
Declaration
IReadOnlyList<IModificationDetails> Modifications { get; }
Property Value
Type | Description |
---|---|
IReadOnlyList<IModificationDetails> | An array of modifications. |