PersistentObjectStorage<T> Events
Represents a base class for the storage of persistent objects (appointments and resources).| Name | Description |
|---|---|
| AutoReloading | Occurs when persistent object data is automatically fetched from the data source; allows cancelling data loading. |
| FilterChanged | Occurs when the PersistentObjectStorage<T>.Filter property value is changed. |
| MappingsChanged | Occurs when the field name of any object mapping in the storage is changed. |
| ObjectChanged | Occurs when a persistent object in the storage is changed. |
| ObjectChanging | Occurs before a persistent object in the storage is changed and allows you to cancel changes. |
| ObjectCollectionCleared | Occurs when a collection of persistent objects in the storage is cleared. |
| ObjectCollectionLoaded | Occurs when persistent objects are loaded from the data source into the storage. |
| ObjectDeleted | Occurs when a persistent object is deleted from the storage. |
| ObjectDeleting | Occurs before a persistent object is deleted from the storage and allows you to cancel deletion. |
| ObjectInserted | Occurs when a persistent object is inserted into the storage. |
| ObjectInserting | Occurs before a persistent object is inserted into the storage and allows you to cancel insertion. |
See Also