RolePrincipal Class
Represents security information for the current HTTP request, including role membership. This class cannot be inherited.
Namespace: System.Web.Security
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. |
![]() | Claims | Gets a collection that contains all of the claims from all of the claims identities associated with this claims principal. (Inherited from ClaimsPrincipal.) |
![]() | 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. |
![]() | Identities | Gets a collection that contains all of the claims identities associated with this claims principal. (Inherited from ClaimsPrincipal.) |
![]() | Identity | Gets the security identity for the current HTTP request. (Overrides ClaimsPrincipal.Identity.) |
![]() | 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 | |
|---|---|---|
![]() | AddIdentities | Adds the specified claims identities to this claims principal. (Inherited from ClaimsPrincipal.) |
![]() | AddIdentity | Adds the specified claims identity to this claims principal. (Inherited from ClaimsPrincipal.) |
![]() | 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.) |
![]() | FindAll(Predicate<Claim>) | Retrieves all of the claims that are matched by the specified predicate. (Inherited from ClaimsPrincipal.) |
![]() | FindAll(String) | Retrieves all or the claims that have the specified claim type. (Inherited from ClaimsPrincipal.) |
![]() | FindFirst(Predicate<Claim>) | Retrieves the first claim that is matched by the specified predicate. (Inherited from ClaimsPrincipal.) |
![]() | FindFirst(String) | Retrieves the first claim with the specified claim type. (Inherited from ClaimsPrincipal.) |
![]() | 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. (Overrides ClaimsPrincipal.GetObjectData(SerializationInfo, StreamingContext).) |
![]() | GetRoles | Gets a list of roles that the RolePrincipal is a member of. |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | HasClaim(Predicate<Claim>) | Determines whether any of the claims identities associated with this claims principal contains a claim that is matched by the specified predicate. (Inherited from ClaimsPrincipal.) |
![]() | HasClaim(String, String) | Determines whether any of the claims identities associated with this claims principal contains a claim with the specified claim type and value. (Inherited from ClaimsPrincipal.) |
![]() | IsInRole | Gets a value indicating whether the user represented by the RolePrincipal is in the specified role. (Overrides ClaimsPrincipal.IsInRole(String).) |
![]() | 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 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
