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