DataTypeService Events
The DataTypeService class implements IDataTypeService. It provides access to operations involving IDataType.
| Event | Signature | Description |
|---|---|---|
| Saving | (IDataTypeService sender, SaveEventArgs<IDataType> e) |
Raised when DataTypeService.Save is called in the API. "sender" will be the current IDataTypeService object. "e" will provide:
|
| Saved | (IDataTypeService sender, SaveEventArgs<IDataType> e) |
Raised when DataTypeService.Save is called in the API and after data has been persisted. "sender" will be the current IDataTypeService object. "e" will provide: NOTE: See here on how to determine if the entity is brand new
|
| Deleting | (IDataTypeService sender, DeleteEventArgs<IDataType> e) |
Raised when DataTypeService.Delete is called in the API. "sender" will be the current IDataTypeService object. "e" will provide:
|
| Deleted | (IDataTypeService sender, DeleteEventArgs<IDataType> e) |
Raised when DataTypeService.Delete is called in the API. "sender" will be the current IDataTypeService object. "e" will provide:
|
Other Events
- DeletedContainer, DeletingContainer
- SavedContainer, SavingContainer
- Moving, Moved