SecurityTokenHandlerCollection.Item[] プロパティ

定義

指定したトークン、トークン型、またはトークン型識別子を処理できるトークン ハンドラーをコレクションから取得します。

オーバーロード

名前 説明
Item[SecurityToken]

指定したセキュリティ トークンを処理できるトークン ハンドラーをこのコレクションから取得します。

Item[String]

指定した型識別子を処理できるトークン ハンドラーをこのコレクションから取得します。

Item[Type]

指定したトークン型を処理できるハンドラーを、このコレクションから取得します。

Item[SecurityToken]

指定したセキュリティ トークンを処理できるトークン ハンドラーをこのコレクションから取得します。

public:
 property System::IdentityModel::Tokens::SecurityTokenHandler ^ default[System::IdentityModel::Tokens::SecurityToken ^] { System::IdentityModel::Tokens::SecurityTokenHandler ^ get(System::IdentityModel::Tokens::SecurityToken ^ token); };
public System.IdentityModel.Tokens.SecurityTokenHandler this[System.IdentityModel.Tokens.SecurityToken token] { get; }
member this.Item(System.IdentityModel.Tokens.SecurityToken) : System.IdentityModel.Tokens.SecurityTokenHandler
Default Public ReadOnly Property Item(token As SecurityToken) As SecurityTokenHandler

パラメーター

token
SecurityToken

ハンドラーを返すトークン。

プロパティ値

指定したトークンを処理できるトークン ハンドラー。

適用対象

Item[String]

指定した型識別子を処理できるトークン ハンドラーをこのコレクションから取得します。

public:
 property System::IdentityModel::Tokens::SecurityTokenHandler ^ default[System::String ^] { System::IdentityModel::Tokens::SecurityTokenHandler ^ get(System::String ^ tokenTypeIdentifier); };
public System.IdentityModel.Tokens.SecurityTokenHandler this[string tokenTypeIdentifier] { get; }
member this.Item(string) : System.IdentityModel.Tokens.SecurityTokenHandler
Default Public ReadOnly Property Item(tokenTypeIdentifier As String) As SecurityTokenHandler

パラメーター

tokenTypeIdentifier
String

トークンの種類を識別する URI。

プロパティ値

指定した型識別子に対応するトークンを処理できるトークン ハンドラー。

適用対象

Item[Type]

指定したトークン型を処理できるハンドラーを、このコレクションから取得します。

public:
 property System::IdentityModel::Tokens::SecurityTokenHandler ^ default[Type ^] { System::IdentityModel::Tokens::SecurityTokenHandler ^ get(Type ^ tokenType); };
public System.IdentityModel.Tokens.SecurityTokenHandler this[Type tokenType] { get; }
member this.Item(Type) : System.IdentityModel.Tokens.SecurityTokenHandler
Default Public ReadOnly Property Item(tokenType As Type) As SecurityTokenHandler

パラメーター

tokenType
Type

処理するトークンの型。

プロパティ値

指定した型のトークンを処理できるトークン ハンドラー。

適用対象