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 IModificationDetails instances, describing the objects that have been deleted from the collection.
Declaration
IModificationDetails[] Deletions { get; }
Property Value
Type | Description |
---|---|
IModificationDetails[] | An array of deletions. |
Insertions
Gets a collection of IModificationDetails instances, describing the objects that have been inserted to the collection.
Declaration
IModificationDetails[] Insertions { get; }
Property Value
Type | Description |
---|---|
IModificationDetails[] | An array of insertions. |
Modifications
Gets a collection of IModificationDetails instances, describing the objects that have been modified in the collection.
Declaration
IModificationDetails[] Modifications { get; }
Property Value
Type | Description |
---|---|
IModificationDetails[] | An array of modifications. |