SecurityTokenHandler.TokenType 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
在衍生類別中覆寫時,取得由這個執行個體處理的安全性權杖型別。
public:
abstract property Type ^ TokenType { Type ^ get(); };
public abstract Type TokenType { get; }
member this.TokenType : Type
Public MustOverride ReadOnly Property TokenType As Type
屬性值
這個執行個體所處理安全性權杖的型別。
範例
下列程式代碼示範如何覆寫 TokenType 屬性,以傳回 Type 自定義處理程式所處理之安全性令牌的 。 程式代碼取自 Custom Token
範例。 此範例提供自定義類別,可讓您處理簡單 Web 令牌 (SWT) 。 如需此範例和其他可供 WIF 下載範例的資訊,請參閱 WIF 程式代碼範例索引。
/// <summary>
/// Gets the System.Type of the SecurityToken is supported by this handler.
/// </summary>
/// <value>The System.Type of the SecurityToken is supported by this handler.</value>
public override Type TokenType
{
get
{
return typeof( SimpleWebToken );
}
}
備註
您必須覆寫衍生類別中的此屬性,並傳回 Type 衍生類別所處理之安全性權杖 (SecurityToken) 的 。