WebSecurity.RequireRoles(String[]) Method

Definition

If the current user is not in all of the specified roles, sets the HTTP status code to 401 (Unauthorized).

public static void RequireRoles (params string[] roles);
static member RequireRoles : string[] -> unit
Public Shared Sub RequireRoles (ParamArray roles As String())

Parameters

roles
String[]

The roles to check. The current user must be in all of the roles that are passed in this parameter.

Exceptions

The Initialize(String, NameValueCollection) method was not called.-or-The InitializeDatabaseConnection method was not called.-or-The SimpleMembershipProvider membership provider is not registered in the configuration of your site. For more information, contact your site's system administrator.

Applies to