Claim.ClaimType Properti

Definisi

Mendapatkan jenis klaim.

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

Nilai Properti

URI yang mewakili jenis klaim.

Contoh

// 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

Keterangan

Properti ClaimType dapat menjadi salah satu jenis klaim yang telah ditentukan sebelumnya yang diwakili oleh properti ClaimTypes statis kelas.

Jenis klaim menentukan jenis klaim yang sedang dinyatakan, seperti alamat email.

Berlaku untuk