.NET Framework Class Library
Claim..::.Right Property

A string representation of a uniform resource identifier (URI) that specifies the right associated with this Claim object. Pre-defined rights are available as static properties of the Rights class.

Namespace:  System.IdentityModel.Claims
Assembly:  System.IdentityModel (in System.IdentityModel.dll)
Syntax

Visual Basic (Declaration)
Public ReadOnly Property Right As String
Visual Basic (Usage)
Dim instance As Claim
Dim value As String

value = instance.Right
C#
public string Right { get; }
Visual C++
public:
property String^ Right {
    String^ get ();
}
JScript
public function get Right () : String

Property Value

Type: System..::.String
A URI that specifies the right associated with this Claim object.
Remarks

Pre-defined values include Identityand PossessProperty.

Examples

Visual Basic
' Write the claimsets in the authorization context. By default, there is only one claimset
' provided by the system. 
Dim claimset As ClaimSet
For Each claimset In ServiceSecurityContext.Current.AuthorizationContext.ClaimSets
    Dim claim As Claim
    For Each 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(vbTab + " Resource = {0}", claim.Resource.ToString())
        sw.WriteLine(vbTab + " Right = {0}", claim.Right)
    Next claim
Next claimset
C#
// 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);
    }
}
.NET Framework Security

Platforms

Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Version Information

.NET Framework

Supported in: 3.5, 3.0
See Also

Reference

Tags :


Page view tracker