SecurityTokenParameters クラス

定義

実装された場合にセキュリティ トークンのパラメーターを表す abstract クラスを指定します。

public ref class SecurityTokenParameters abstract
public abstract class SecurityTokenParameters
type SecurityTokenParameters = class
Public MustInherit Class SecurityTokenParameters
継承
SecurityTokenParameters
派生

次のコードは、 CreditCardTokenParameters という名前のこのクラスのカスタム オーバーライドを示しています。

public class CreditCardTokenParameters : SecurityTokenParameters
{
    public CreditCardTokenParameters()
    {
    }

    protected CreditCardTokenParameters(CreditCardTokenParameters other)
        : base(other)
    {
    }

    protected override SecurityTokenParameters CloneCore()
    {
        return new CreditCardTokenParameters(this);
    }

    protected override void InitializeSecurityTokenRequirement(SecurityTokenRequirement requirement)
    {
        requirement.TokenType = Constants.CreditCardTokenType;
        return;
    }

    // A credit card token has no cryptography, no windows identity, and supports only client authentication.
    protected override bool HasAsymmetricKey
    {
        get { return false; }
    }

    protected override bool SupportsClientAuthentication
    {
        get { return true; }
    }

    protected override bool SupportsClientWindowsIdentity
    {
        get { return false; }
    }

    protected override bool SupportsServerAuthentication
    {
        get { return false; }
    }

    protected override SecurityKeyIdentifierClause CreateKeyIdentifierClause(SecurityToken token, SecurityTokenReferenceStyle referenceStyle)
    {
        if (referenceStyle == SecurityTokenReferenceStyle.Internal)
        {
            return token.CreateKeyIdentifierClause<LocalIdKeyIdentifierClause>();
        }
        else
        {
            throw new NotSupportedException("External references are not supported for credit card tokens");
        }
    }
}
Public Class CreditCardTokenParameters
    Inherits SecurityTokenParameters

    Public Sub New()
    End Sub

    Protected Sub New(ByVal other As CreditCardTokenParameters)
        MyBase.New(other)
    End Sub

    Protected Overrides Function CloneCore() As SecurityTokenParameters
        Return New CreditCardTokenParameters(Me)
    End Function

    Protected Overrides Sub InitializeSecurityTokenRequirement(ByVal requirement As SecurityTokenRequirement)
        requirement.TokenType = Constants.CreditCardTokenType
        Return
    End Sub

    ' A credit card token has no cryptography, no windows identity, and supports only client authentication.
    Protected Overrides ReadOnly Property HasAsymmetricKey() As Boolean
        Get
            Return False
        End Get
    End Property

    Protected Overrides ReadOnly Property SupportsClientAuthentication() As Boolean
        Get
            Return True
        End Get
    End Property

    Protected Overrides ReadOnly Property SupportsClientWindowsIdentity() As Boolean
        Get
            Return False
        End Get
    End Property

    Protected Overrides ReadOnly Property SupportsServerAuthentication() As Boolean
        Get
            Return False
        End Get
    End Property

    Protected Overrides Function CreateKeyIdentifierClause(ByVal token As SecurityToken, _
                                                           ByVal referenceStyle As SecurityTokenReferenceStyle) As SecurityKeyIdentifierClause
        If referenceStyle = SecurityTokenReferenceStyle.Internal Then
            Return token.CreateKeyIdentifierClause(Of LocalIdKeyIdentifierClause)()
        Else
            Throw New NotSupportedException("External references are not supported for credit card tokens")
        End If
    End Function

End Class

注釈

セキュリティ トークンのパラメーターは、セキュリティ バインド要素が必要とするトークンに関する情報 (トークンの種類や発行者など) を提供します。

このクラスから派生するセキュリティ トークン パラメーター クラスはトークン用プロパティとメソッドのコレクションであり、さまざまな種類のセキュリティ バインディング用の要素とトークンの作成に使用されます。 すべてのプロパティがすべての派生クラスに関連しているわけではありません。 たとえば、ReferenceStyle は発行済みのトークン (SAML トークン) の場合には関係ありません。

コンストラクター

SecurityTokenParameters()

SecurityTokenParameters クラスの新しいインスタンスを初期化します。

SecurityTokenParameters(SecurityTokenParameters)

別のインスタンスから SecurityTokenParameters クラスの新しいインスタンスを初期化します。

プロパティ

HasAsymmetricKey

派生クラスでオーバーライドされると、トークンに非対称キーがあるかどうかを示す値を取得します。

InclusionMode

トークン包含要件を取得または設定します。

ReferenceStyle

トークン参照スタイルを取得または設定します。

RequireDerivedKeys

キーを元の証明キーから派生できるかどうかを示す値を取得または設定します。

SupportsClientAuthentication

派生クラスでオーバーライドされると、トークンがクライアント認証をサポートしているかどうかを示す値を取得します。

SupportsClientWindowsIdentity

派生クラスでオーバーライドされると、トークンが認証用の Windows ID をサポートしているかどうかを示す値を取得します。

SupportsServerAuthentication

派生クラスでオーバーライドされると、トークンがサーバー認証をサポートしているかどうかを示す値を取得します。

メソッド

Clone()

クラスのこのインスタンスを複製します。

CloneCore()

クラスのこのインスタンスを複製します。

CreateKeyIdentifierClause(SecurityToken, SecurityTokenReferenceStyle)

トークンのキー識別句を作成します。

Equals(Object)

指定されたオブジェクトが現在のオブジェクトと等しいかどうかを判断します。

(継承元 Object)
GetHashCode()

既定のハッシュ関数として機能します。

(継承元 Object)
GetType()

現在のインスタンスの Type を取得します。

(継承元 Object)
InitializeSecurityTokenRequirement(SecurityTokenRequirement)

派生クラスでオーバーライドされると、セキュリティ トークン要件を初期化します。

MatchesKeyIdentifierClause(SecurityToken, SecurityKeyIdentifierClause, SecurityTokenReferenceStyle)

トークンがキー識別子句と一致するかどうかを示します。

MemberwiseClone()

現在の Object の簡易コピーを作成します。

(継承元 Object)
ToString()

クラスのこのインスタンスのテキスト表現を表示します。

ToString()

現在のオブジェクトを表す文字列を返します。

(継承元 Object)

適用対象