RoleManagerEventHandler Delegate
.NET Framework 2.0
Defines the delegate for the GetRoles event of the RoleManagerModule class.
Namespace: System.Web.Security
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
/** @delegate */ public delegate void RoleManagerEventHandler ( Object sender, RoleManagerEventArgs e )
Not applicable.
Parameters
- sender
The RoleManagerModule that raised the GetRoles event.
- e
A RoleManagerEventArgs object that contains the event data.
The RoleManagerEventHandler delegate is defined for the GetRoles event of the RoleManagerModule class. You can access the GetRoles event of the RoleManagerModule class in the Global.asax file for your ASP.NET application as shown in the example for this topic.
You can use the RoleManagerEventHandler to replace the creation of the RolePrincipal object by the RoleManagerModule with your own custom object. To do this, define a delegate using the RoleManagerEventHandler and assign it to the GetRoles event of the RoleManagerModule.
Community Additions
ADD
Show: