WebSecurity.RequireUser Method

Definition

Overloads

RequireUser(Int32)

If the specified user is not logged on, sets the HTTP status to 401 (Unauthorized).

RequireUser(String)

If the current user does not match the specified user name, sets the HTTP status to 401 (Unauthorized).

RequireUser(Int32)

If the specified user is not logged on, sets the HTTP status to 401 (Unauthorized).

public static void RequireUser (int userId);
static member RequireUser : int -> unit
Public Shared Sub RequireUser (userId As Integer)

Parameters

userId
Int32

The ID of the user to compare.

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

RequireUser(String)

If the current user does not match the specified user name, sets the HTTP status to 401 (Unauthorized).

public static void RequireUser (string userName);
static member RequireUser : string -> unit
Public Shared Sub RequireUser (userName As String)

Parameters

userName
String

The name of the user to compare.

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