Прочетете на английски Редактиране

Споделяне чрез


RoleService.SelectingProvider Event

Definition

Occurs when a RoleService instance determines which role provider to use for checking the user's roles.

C#
public static event EventHandler<System.Web.ApplicationServices.SelectingProviderEventArgs> SelectingProvider;

Event Type

Examples

The following example shows how to bind an event handler to the SelectingProvider event in the Global.asax file. The event handler determines at run time which role provider to use, based on the user name.

C#
void Application_Start(object sender, EventArgs e) 
{
    System.Web.ApplicationServices.RoleService.SelectingProvider += 
        new EventHandler<System.Web.ApplicationServices.SelectingProviderEventArgs>(RoleService_SelectingProvider);
}

void RoleService_SelectingProvider
    (object sender, System.Web.ApplicationServices.SelectingProviderEventArgs e)
{
    if (e.User.Identity.Name.IndexOf("@example.com") > 0)
    {
        e.ProviderName = "EmployeeRoleProvider";
    }
    else
    {
        e.ProviderName = "CustomerRoleProvider";
    }
}

Remarks

The RoleService class raises the SelectingProvider event when it determines which role provider to use in order to retrieve the user's roles. You can create an event handler for the SelectingProvider event to select at run time which role provider to use.

Applies to

Продукт Версии
.NET Framework 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