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