ContentTypeService Events
The ContentTypeService class implements IContentTypeService. It provides access to operations involving IContentType and IMediaType.
| Event | Signature | Description |
|---|---|---|
| SavingContentType | (IContentTypeService sender, SaveEventArgs<IContentType> e) |
Raised when ContentTypeService.Save (IContentType overloads) is called in the API. "sender" will be the current IContentTypeService object. "e" will provide:
|
| SavedContentType | (IContentTypeService sender, SaveEventArgs<IContentType> e) |
Raised when ContentTypeService.Save (IContentType overloads) is called in the API and after data has been persisted. "sender" will be the current IContentTypeService object. "e" will provide: NOTE: See here on how to determine if the entity is brand new
|
| SavingMediaType | (IContentTypeService sender, SaveEventArgs<IMediaType> e) |
Raised when ContentTypeService.Save (IMediaType overloads) is called in the API. "sender" will be the current IContentTypeService object. "e" will provide:
|
| SavedMediaType | (IContentTypeService sender, SaveEventArgs<IMediaType> e) |
Raised when ContentTypeService.Save (IMediaType overloads) is called in the API and after data has been persisted. "sender" will be the current IContentTypeService object. "e" will provide: NOTE: See here on how to determine if the entity is brand new
|
| DeletingContentType | (IContentTypeService sender, DeleteEventArgs<IContentType> e) |
Raised when ContentTypeService.Delete (IContentType overloads) is called in the API. "sender" will be the current IContentTypeService object. "e" will provide:
|
| DeletedContentType | (IContentTypeService sender, DeleteEventArgs<IContentType> e) |
Raised when ContentTypeService.Delete (IContentType overloads) is called in the API. "sender" will be the current IContentTypeService object. "e" will provide:
|
| DeletingMediaType | (IContentTypeService sender, DeleteEventArgs<IMediaType> e) |
Raised when ContentTypeService.Delete (IMediaType overloads) is called in the API. "sender" will be the current IContentTypeService object. "e" will provide:
|
| DeletedMediaType | (IContentTypeService sender, DeleteEventArgs<IMediaType> e) |
Raised when ContentTypeService.Delete (IMediaType overloads) is called in the API. "sender" will be the current IContentTypeService object. "e" will provide:
|