RoleProvider.IsUserInRole Method
.NET Framework 3.0
Gets a value indicating whether the specified user is in the specified role for the configured applicationName.
Namespace: System.Web.Security
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
public abstract boolean IsUserInRole ( String username, String roleName )
public abstract function IsUserInRole ( username : String, roleName : String ) : boolean
Not applicable.
Parameters
- username
The user name to search for.
- roleName
The role to search in.
Return Value
true if the specified user is in the specified role for the configured applicationName; otherwise, false.The IsUserInRole method is called by the IsUserInRole method of the Roles class and the IsInRole method of the RolePrincipal class to determine whether the current logged-on user is associated with a role from the data source for the configured ApplicationName.
If the specified user name is a null reference (Nothing in Visual Basic) or is an empty string, we recommend that your provider throw an exception.
If the specified role name is a null reference (Nothing in Visual Basic) or is an empty string, we recommend that your provider throw an exception.
Community Additions
ADD
Show: