SharePoint 2013 – New Event Receiver for Groups,Users,Roles,Inheritance
SharePoint 2013 has Introduced a New and much needed Event Receiver class “SPSecurityEventReceiver” to handle events for SharePoint Groups, Users, Roles and Permission Inheritance. For detailed example see How to Create a GroupUserAdded() SPSecurityEventReceiver in SharePoint 2013
Here is the list of events that you can handle in SharePoint 2013 Preview.
You can Handle the following SharePoint Group Events -
- GroupAdded
- GroupAdding
- GroupDeleted
- GroupDeleting
- GroupUpdated
- GroupUpdating
You can Handle the following SharePoint User Events -
- GroupUserAdded
- GroupUserAdding
- GroupUserDeleted
- GroupUserDeleting
- RoleAssignmentAdded
- RoleAssignmentAdding
- RoleAssignmentDeleted
- RoleAssignmentDeleting
- RoleDefinitionAdded
- RoleDefinitionAdding
- RoleDefinitionDeleted
- RoleDefinitionDeleting
- RoleDefinitionUpdated
- RoleDefinitionUpdating
You can Handle the following Inheritance Events -
- InheritanceBreaking
- InheritanceBroken
- InheritanceReset
- InheritanceResetting
Related Post – How to Create a SPSecurityEventReceiver in SharePoint 2013





Pingback: Create a GroupUserAdded() EventReceiver(SPSecurityEventReceiver) in SharePoint 2013