SecurityTokenHandlerCollection コンストラクター

定義

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

オーバーロード

SecurityTokenHandlerCollection()

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

SecurityTokenHandlerCollection(IEnumerable<SecurityTokenHandler>)

指定したトークン ハンドラーを使用して、SecurityTokenHandlerCollection クラスの新しいインスタンスを初期化します。

SecurityTokenHandlerCollection(SecurityTokenHandlerConfiguration)

指定した構成を使用して、SecurityTokenHandlerCollection クラスの新しいインスタンスを初期化します。

SecurityTokenHandlerCollection(IEnumerable<SecurityTokenHandler>, SecurityTokenHandlerConfiguration)

トークン ハンドラーと構成を指定して、SecurityTokenHandlerCollection クラスの新しいインスタンスを初期化します。

SecurityTokenHandlerCollection()

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

public:
 SecurityTokenHandlerCollection();
public SecurityTokenHandlerCollection ();
Public Sub New ()

注釈

新しいコレクションにはハンドラーが含まれていません。

適用対象

SecurityTokenHandlerCollection(IEnumerable<SecurityTokenHandler>)

指定したトークン ハンドラーを使用して、SecurityTokenHandlerCollection クラスの新しいインスタンスを初期化します。

public:
 SecurityTokenHandlerCollection(System::Collections::Generic::IEnumerable<System::IdentityModel::Tokens::SecurityTokenHandler ^> ^ handlers);
public SecurityTokenHandlerCollection (System.Collections.Generic.IEnumerable<System.IdentityModel.Tokens.SecurityTokenHandler> handlers);
new System.IdentityModel.Tokens.SecurityTokenHandlerCollection : seq<System.IdentityModel.Tokens.SecurityTokenHandler> -> System.IdentityModel.Tokens.SecurityTokenHandlerCollection
Public Sub New (handlers As IEnumerable(Of SecurityTokenHandler))

パラメーター

handlers
IEnumerable<SecurityTokenHandler>

新しいインスタンスを初期化するために使用するトークン ハンドラー。

注釈

このコンストラクターを使用して クラスの SecurityTokenHandlerCollection インスタンスを複製しないでください。代わりに Clone メソッドを使用してください。

適用対象

SecurityTokenHandlerCollection(SecurityTokenHandlerConfiguration)

指定した構成を使用して、SecurityTokenHandlerCollection クラスの新しいインスタンスを初期化します。

public:
 SecurityTokenHandlerCollection(System::IdentityModel::Tokens::SecurityTokenHandlerConfiguration ^ configuration);
public SecurityTokenHandlerCollection (System.IdentityModel.Tokens.SecurityTokenHandlerConfiguration configuration);
new System.IdentityModel.Tokens.SecurityTokenHandlerCollection : System.IdentityModel.Tokens.SecurityTokenHandlerConfiguration -> System.IdentityModel.Tokens.SecurityTokenHandlerCollection
Public Sub New (configuration As SecurityTokenHandlerConfiguration)

パラメーター

configuration
SecurityTokenHandlerConfiguration

コレクションに関連付ける基本構成。

注釈

新しいコレクションにはハンドラーが含まれていません。

適用対象

SecurityTokenHandlerCollection(IEnumerable<SecurityTokenHandler>, SecurityTokenHandlerConfiguration)

トークン ハンドラーと構成を指定して、SecurityTokenHandlerCollection クラスの新しいインスタンスを初期化します。

public:
 SecurityTokenHandlerCollection(System::Collections::Generic::IEnumerable<System::IdentityModel::Tokens::SecurityTokenHandler ^> ^ handlers, System::IdentityModel::Tokens::SecurityTokenHandlerConfiguration ^ configuration);
public SecurityTokenHandlerCollection (System.Collections.Generic.IEnumerable<System.IdentityModel.Tokens.SecurityTokenHandler> handlers, System.IdentityModel.Tokens.SecurityTokenHandlerConfiguration configuration);
new System.IdentityModel.Tokens.SecurityTokenHandlerCollection : seq<System.IdentityModel.Tokens.SecurityTokenHandler> * System.IdentityModel.Tokens.SecurityTokenHandlerConfiguration -> System.IdentityModel.Tokens.SecurityTokenHandlerCollection
Public Sub New (handlers As IEnumerable(Of SecurityTokenHandler), configuration As SecurityTokenHandlerConfiguration)

パラメーター

handlers
IEnumerable<SecurityTokenHandler>

新しいインスタンスを初期化するために使用するトークン ハンドラー。

configuration
SecurityTokenHandlerConfiguration

コレクションに関連付ける基本構成。

注釈

このコンストラクターを使用して クラスの SecurityTokenHandlerCollection インスタンスを複製しないでください。代わりに Clone メソッドを使用してください。

適用対象