Interface IModificationDetails
An object that contains information about the change that occurred on a single object.
Namespace: Realms.Server
Assembly: Realm.dll
Syntax
public interface IModificationDetails
Properties
| Improve this Doc View SourceChangedProperties
Gets the names of the properties that were changed.
Declaration
ISet<string> ChangedProperties { get; }
Property Value
Type | Description |
---|---|
ISet<String> |
CurrentObject
Gets the object as it is after the change.
Declaration
dynamic CurrentObject { get; }
Property Value
Type | Description |
---|---|
Object | A RealmObject instance. |
PreviousObject
Gets the object as it was before the change.
Declaration
dynamic PreviousObject { get; }
Property Value
Type | Description |
---|---|
Object | A RealmObject instance. |