Class MemberTypeSavedNotification
Notification that is published after a member type has been saved.
Inheritance
object
Namespace: Umbraco.Cms.Core.Notifications
Assembly: Umbraco.Core.dll
Syntax
public class MemberTypeSavedNotification : SavedNotification<IMemberType>, IStatefulNotification, INotification
Remarks
This notification is published by the IMemberTypeService after the member type has been persisted. It is not cancelable since the save operation has already completed.
Constructors
View SourceMemberTypeSavedNotification(IEnumerable<IMemberType>, EventMessages)
Initializes a new instance of the MemberTypeSavedNotification class with multiple member types.
Declaration
public MemberTypeSavedNotification(IEnumerable<IMemberType> target, EventMessages messages)
Parameters
| Type | Name | Description |
|---|---|---|
| IEnumerable<IMemberType> | target | The collection of member types that were saved. |
| EventMessages | messages | The event messages collection. |
MemberTypeSavedNotification(IMemberType, EventMessages)
Initializes a new instance of the MemberTypeSavedNotification class with a single member type.
Declaration
public MemberTypeSavedNotification(IMemberType target, EventMessages messages)
Parameters
| Type | Name | Description |
|---|---|---|
| IMemberType | target | The member type that was saved. |
| EventMessages | messages | The event messages collection. |