RoleManagerModule.GetRoles Event
.NET Framework 3.0
A global application event that is raised when the RoleManagerModule is ready to create a RolePrincipal that represents the current user.
Namespace: System.Web.Security
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
'Declaration Public Event GetRoles As RoleManagerEventHandler 'Usage Dim instance As RoleManagerModule Dim handler As RoleManagerEventHandler AddHandler instance.GetRoles, handler
/** @event */ public void add_GetRoles (RoleManagerEventHandler value) /** @event */ public void remove_GetRoles (RoleManagerEventHandler value)
In JScript, you can handle the events defined by a class, but you cannot define your own.
Not applicable.
The GetRoles event is raised before the RoleManagerModule creates a RolePrincipal object and assigns it to the User property of the CurrentHttpContext. You can use this event to audit when role information is applied or to replace the creation of a RolePrincipal by the RoleManagerModule with your own code.
You can cancel the application of role information by the RoleManagerModule by setting the RolesPopulated property of the RoleManagerEventArgs to true in the GetRoles event.
If you set RolesPopulated to true in your GetRoles event handler, then the User property of the current HttpContext is not set to a RolePrincipal object by the RoleManagerModule.
Community Additions
ADD
Show: