Edit

Share via


RoleManagerEventHandler Delegate

Definition

Defines the delegate for the GetRoles event of the RoleManagerModule class.

C#
public delegate void RoleManagerEventHandler(object sender, RoleManagerEventArgs e);

Parameters

sender
Object

The RoleManagerModule that raised the GetRoles event.

e
RoleManagerEventArgs

A RoleManagerEventArgs object that contains the event data.

Examples

The following example shows the GetRoles event included in the Global.asax file for an ASP.NET application. The GetRoles event adds a trace notification for an application where trace is enabled in the Web.config file.

C#
public void RoleManager_OnGetRoles(object sender, RoleManagerEventArgs args)
{
  args.Context.Trace.Write("Roles", "Applying Role Information");
}

Remarks

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.

Extension Methods

GetMethodInfo(Delegate)

Gets an object that represents the method represented by the specified delegate.

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also