RoleProvider Class
Defines the contract that ASP.NET implements to provide role-management services using custom role providers.
Assembly: System.Web.ApplicationServices (in System.Web.ApplicationServices.dll)
The RoleProvider type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | ApplicationName | Gets or sets the name of the application to store and retrieve role information for. |
![]() | Description | Gets a brief, friendly description suitable for display in administrative tools or other user interfaces (UIs). (Inherited from ProviderBase.) |
![]() | Name | Gets the friendly name used to refer to the provider during configuration. (Inherited from ProviderBase.) |
| Name | Description | |
|---|---|---|
![]() | AddUsersToRoles | Adds the specified user names to the specified roles for the configured applicationName. |
![]() | CreateRole | Adds a new role to the data source for the configured applicationName. |
![]() | DeleteRole | Removes a role from the data source for the configured applicationName. |
![]() | Equals(Object) | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | FindUsersInRole | Gets an array of user names in a role where the user name contains the specified user name to match. |
![]() | GetAllRoles | Gets a list of all the roles for the configured applicationName. |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetRolesForUser | Gets a list of the roles that a specified user is in for the configured applicationName. |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | GetUsersInRole | Gets a list of users in the specified role for the configured applicationName. |
![]() | Initialize | Initializes the provider. (Inherited from ProviderBase.) |
![]() | IsUserInRole | Gets a value indicating whether the specified user is in the specified role for the configured applicationName. |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | RemoveUsersFromRoles | Removes the specified user names from the specified roles for the configured applicationName. |
![]() | RoleExists | Gets a value indicating whether the specified role name already exists in the role data source for the configured applicationName. |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
ASP.NET role management is designed to enable you to easily use a number of different role providers for your ASP.NET applications. You can use the supplied role providers that are included with the .NET Framework, or you can implement your own provider.
When implementing a custom role provider, you are required to inherit the RoleProvider abstract class.
There are two primary reasons for creating a custom role provider.
You need to store role information in a data source that is not supported by the role providers included with the .NET Framework, such as a FoxPro database, an Oracle database, or other data sources.
You need to manage role information using a database schema that is different from the database schema used by the providers that ship with the .NET Framework. A common example of this would be role data that already exists in a SQL Server database for a company or Web site.
| Topic | Location |
|---|---|
| How to: Sample Role-Provider Implementation | Building ASP .NET Web Applications |
| Implementing a Role Provider | Building ASP .NET Web Applications |
| How to: Sample Role-Provider Implementation | Building ASP .NET Web Applications |
| Implementing a Role Provider | Building ASP .NET Web Applications |
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
