Claim.Type 属性

定义

获取声明的声明类型。

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

属性值

声明类型。

注解

属性 Type 提供声明的语义内容,即它声明声明声明的内容。 例如,声明类型 GivenName 为 ("http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname") 的声明表示用户的名字。 声明类型通常是 URI;但是,您并不局限于任何特定格式,它必须可表示为字符串。 唯一的一般要求是声明颁发者和声明使用者必须就声明的含义达成一致。 Windows Identity Foundation (WIF) 使用的已知声明类型的常量可通过 ClaimTypes 类获取。 声明值由 Value 属性提供。

适用于