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。

プロパティ値

指定された種類の ID に対応するトークンを処理できるトークン ハンドラー。

適用対象

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

処理するトークンの型。

プロパティ値

指定された種類のトークンを処理できるトークン ハンドラー。

適用対象