Claim.Right 속성

정의

Claim 개체와 연결된 권한을 지정하는 URI(Uniform Resource Identifier)의 문자열 표현입니다. 미리 정의된 권한은 Rights 클래스의 정적 속성으로 사용할 수 있습니다.

public:
 property System::String ^ Right { System::String ^ get(); };
public string Right { get; }
member this.Right : string
Public ReadOnly Property Right As String

속성 값

String

Claim 개체와 연결된 권한을 지정하는 URI입니다.

예제

// 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);
    }
}
' 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

설명

미리 정의된 값에는 포함 IdentityPossessProperty.

적용 대상