versionFrom |
---|
9.0.0 |
:::note If you are using Umbraco 8 or any lower version, please refer to the MemberTypeService Events article instead. :::
The MemberTypeService class implements IMemberTypeService. It provides access to operations involving IMemberType
Notification | Members | Description |
---|---|---|
MemberTypeSavingNotification |
|
Published when MemberTypeService.Save is called in the API. SavedEntities: Gets the collection of IMemberType objects being saved. |
MemberTypeSavedNotification |
|
Published when MemberTypeService.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 IMemberType objects. |
MemberTypeDeletingNotification |
|
Published when MemberTypeService.Delete is called in the API. DeletedEntities: Gets the collection of IMemberType objects being deleted. |
MemberTypeDeletedNotification |
|
Published when MemberTypeService.Delete is called in the API, after the entities has been deleted. DeletedEntities: Gets the collection of deleted IMemberType objects. |
MemberTypeMovingNotification |
|
Published when MemberTypeService.Move is called in the API MoveInfoCollection will for each moving entity provide:
|
MemberTypeMovedNotification |
|
Published when MemberTypeService.Move is called in the API, after the entities has been moved. MoveInfoCollection will for each moving entity provide:
|
MemberTypeChangedNotification |
|
Published when a MemberType 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:
|