Claim.Right Property
.NET Framework 4.5
Namespace: System.IdentityModel.Claims
Assembly: System.IdentityModel (in System.IdentityModel.dll)
Pre-defined values include Identity and PossessProperty.
// Write the claimsets in the authorization context. By default, there is only one claimset // provided by the system. foreach (ClaimSet claimset in ServiceSecurityContext.Current.AuthorizationContext.ClaimSets) { foreach (Claim claim in claimset) { // Write out each claim type, claim value, and the right. There are two // possible values for the right: "identity" and "possessproperty". sw.WriteLine("Claim Type = {0}", claim.ClaimType); sw.WriteLine("\t Resource = {0}", claim.Resource.ToString()); sw.WriteLine("\t Right = {0}", claim.Right); } }
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.