ContentTypeService Notifications
The ContentTypeService class implements IContentTypeService. It provides access to operations involving IContentType
Notification | Members | Description |
---|---|---|
ContentTypeSavingNotification |
| Published when ContentTypeService.Save is called in the API.
SavedEntities: Gets the collection of IContentType objects being saved. |
ContentTypeSavedNotification |
| Published when ContentTypeService.Save is called in the API, after the entities has been saved.
NOTE: See here on how to determine if the entity is brand new
SavedEntities: Gets the collection of saved IContentType objects. |
ContentTypeDeletingNotification |
| Published when ContentTypeService.Delete is called in the API.
DeletedEntities: Gets the collection of IContentType objects being deleted. |
ContentTypeDeletedNotification |
| Published when ContentTypeService.Delete is called in the API, after the entities has been deleted.
DeletedEntities: Gets the collection of deleted IContentType objects. |
ContentTypeMovingNotification |
| Published when ContentTypeService.Move is called in the API
MoveInfoCollection will for each moving entity provide:
|
ContentTypeMovedNotification |
| Published when ContentTypeService.Move is called in the API, after the entities has been moved.
MoveInfoCollection will for each moving entity provide:
|
ContentTypeChangedNotification |
| Published when a ContentType is saved or deleted, after the transaction has completed. This is mainly used for caching purposes, and generally not recommended, use Saved and Deleted notifications instead.
Changes will for each item affected by the change prove:
|
Last modified 1mo ago