SaaS CMS has officially launched! Learn more now.

Interface IContentSecurityEvents

A repository for event handlers when Security info for IContent object.

Namespace: EPiServer.DataAbstraction
Assembly: EPiServer.dll
Version: 12.0.3
Syntax
public interface IContentSecurityEvents

Events

ContentSecurityDeleted

Occurs when access rights for content item/items is deleted

Declaration
event EventHandler<ContentSecurityDeleteEventArg> ContentSecurityDeleted
Event Type
Type Description
System.EventHandler<ContentSecurityDeleteEventArg>

ContentSecurityDeleting

Occurs before access rights for content item/items is deleted

Declaration
event EventHandler<ContentSecurityDeleteCancellableEventArg> ContentSecurityDeleting
Event Type
Type Description
System.EventHandler<ContentSecurityDeleteCancellableEventArg>
Remarks

An event handler can cancel the operation by setting CancelAction to true and giving an explanation in CancelReason.

ContentSecuritySaved

Occurs when access rights for content item/items is changed

Declaration
event EventHandler<ContentSecurityEventArg> ContentSecuritySaved
Event Type
Type Description
System.EventHandler<ContentSecurityEventArg>

ContentSecuritySaving

Occurs before access rights for content item/items is changed

Declaration
event EventHandler<ContentSecurityCancellableEventArgs> ContentSecuritySaving
Event Type
Type Description
System.EventHandler<ContentSecurityCancellableEventArgs>
Remarks

An event handler can cancel the operation by setting CancelAction to true and giving an explanation in CancelReason.

Extension Methods