RolePrincipal Class
Represents security information for the current HTTP request, including role membership. This class cannot be inherited.
Assembly: System.Web (in System.Web.dll)
The RolePrincipal type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | RolePrincipal(IIdentity) | Instantiates a RolePrincipal object for the specified identity. |
![]() | RolePrincipal(IIdentity, String) | Instantiates a RolePrincipal object for the specified identity with role information from the specified encryptedTicket. |
![]() | RolePrincipal(SerializationInfo, StreamingContext) | Initializes a new instance of the RolePrincipal class using information that is contained in the specified SerializationInfo object and using the specified streaming context. |
![]() | RolePrincipal(String, IIdentity) | Instantiates a RolePrincipal object for the specified identity using the specified providerName. |
![]() | RolePrincipal(String, IIdentity, String) | Instantiates a RolePrincipal object for the specified identity using the specified providerName and role information from the specified encryptedTicket. |
| Name | Description | |
|---|---|---|
![]() | CachedListChanged | Gets a value indicating whether the list of role names cached with the RolePrincipal object has been modified. |
![]() | CookiePath | Gets the path for the cached role names cookie. |
![]() | Expired | Gets a value indicating whether the roles cookie has expired. |
![]() | ExpireDate | Gets the date and time when the roles cookie will expire. |
![]() | Identity | Gets the security identity for the current HTTP request. |
![]() | IsRoleListCached | Gets a value indicating whether the list of roles for the user has been cached in a cookie. |
![]() | IssueDate | Gets the date and time that the roles cookie was issued. |
![]() | ProviderName | Gets the name of the role provider that stores and retrieves role information for the user. |
![]() | Version | Gets the version number of the roles cookie. |
| Name | Description | |
|---|---|---|
![]() | 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.) |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetObjectData | Populates a SerializationInfo object with the data that is required in order to serialize the target object using the specified streaming context. |
![]() | GetRoles | Gets a list of roles that the RolePrincipal is a member of. |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | IsInRole | Gets a value indicating whether the user represented by the RolePrincipal is in the specified role. |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | SetDirty | Marks the cached role list as having been changed. |
![]() | ToEncryptedTicket | Returns the role information cached with the RolePrincipal object encrypted based on the CookieProtectionValue. |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
The RolePrincipal object implements the IPrincipal interface and represents the current security context for the HTTP request.
When role management is enabled (see Roles), the RoleManagerModule assigns a RolePrincipal object to the User property of the Current HttpContext.
The RolePrincipal class exposes the security identity for the current HTTP request and additionally performs checks for role membership. If CacheRolesInCookie is true, then the RolePrincipal object manages the cached list of roles and looks up role membership for the current user in the cached list first, then the role Provider. If CacheRolesInCookie is false, the RolePrincipal object always looks up role membership using the role provider.
The RolePrincipal object encrypts and decrypts role information cached in the cookie identified by the CookieName based on the CookieProtectionValue.
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.




