Class ExportedMemberNotification
Notification published when a member has been exported.
Inheritance
object
Namespace: Umbraco.Cms.Core.Notifications
Assembly: Umbraco.Core.dll
Syntax
public class ExportedMemberNotification : INotification
Remarks
This notification is published after member data has been exported, typically for GDPR compliance purposes. Handlers can use this to add additional data to the export.
Constructors
View SourceExportedMemberNotification(IMember, MemberExportModel)
Initializes a new instance of the ExportedMemberNotification class.
Declaration
public ExportedMemberNotification(IMember member, MemberExportModel exported)
Parameters
| Type | Name | Description |
|---|---|---|
| IMember | member | The member that was exported. |
| MemberExportModel | exported | The export model containing the member's data. |
Properties
View SourceExported
Gets the export model containing the member's data.
Declaration
public MemberExportModel Exported { get; }
Property Value
| Type | Description |
|---|---|
| MemberExportModel |
Member
Gets the member that was exported.
Declaration
public IMember Member { get; }
Property Value
| Type | Description |
|---|---|
| IMember |