ClaimsPrincipalPermission
represents the permission required to access a resource.
ClaimsPrincipalPermission takes in a string that represents
the resource to be accessed, and a string that represents the
action to be performed on the resource. When
Demand is called, the principal must have the permission to
perform the specified action on the specified resource, or
Demand throws an exception. This permission is checked by
CheckAccess.
Namespace: Microsoft.IdentityModel.Claims
Assembly: Microsoft.IdentityModel (in
microsoft.identitymodel.dll)
Usage
Syntax
Visual Basic |
<SerializableAttribute> _
Public NotInheritable Class ClaimsPrincipalPermission
Implements IPermission, ISecurityEncodable, IUnrestrictedPermission
|
C# |
[SerializableAttribute]
public sealed class ClaimsPrincipalPermission : IPermission, ISecurityEncodable, IUnrestrictedPermission
|
C++ |
[SerializableAttribute]
public ref class ClaimsPrincipalPermission sealed : IPermission, ISecurityEncodable, IUnrestrictedPermission
|
J# |
/** @attribute SerializableAttribute() */
public final class ClaimsPrincipalPermission implements IPermission, ISecurityEncodable,
IUnrestrictedPermission
|
JScript |
SerializableAttribute
public final class ClaimsPrincipalPermission implements IPermission, ISecurityEncodable,
IUnrestrictedPermission
|
Inheritance
Hierarchy
System.Object
Microsoft.IdentityModel.Claims.ClaimsPrincipalPermission
Thread Safety
Any public static (Shared in Visual
Basic) members of this type are thread safe. Any instance members
are not guaranteed to be thread safe.
Platforms
Development Platforms
Windows Server 2003, Windows Vista
Target Platforms
Windows Server 2008, Windows Vista, Not tested on Windows XP
See Also