SecurityTokenHandlerCollection Constructeurs

Définition

Initialise une nouvelle instance de la classe SecurityTokenHandlerCollection.

Surcharges

Nom Description
SecurityTokenHandlerCollection()

Initialise une nouvelle instance de la classe SecurityTokenHandlerCollection.

SecurityTokenHandlerCollection(IEnumerable<SecurityTokenHandler>)

Initialise une nouvelle instance de la SecurityTokenHandlerCollection classe avec les gestionnaires de jetons spécifiés.

SecurityTokenHandlerCollection(SecurityTokenHandlerConfiguration)

Initialise une nouvelle instance de la SecurityTokenHandlerCollection classe avec la configuration spécifiée.

SecurityTokenHandlerCollection(IEnumerable<SecurityTokenHandler>, SecurityTokenHandlerConfiguration)

Initialise une nouvelle instance de la SecurityTokenHandlerCollection classe avec les gestionnaires de jetons et la configuration spécifiés.

SecurityTokenHandlerCollection()

Initialise une nouvelle instance de la classe SecurityTokenHandlerCollection.

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

Remarques

La nouvelle collection ne contient aucun gestionnaire.

S’applique à

SecurityTokenHandlerCollection(IEnumerable<SecurityTokenHandler>)

Initialise une nouvelle instance de la SecurityTokenHandlerCollection classe avec les gestionnaires de jetons spécifiés.

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))

Paramètres

handlers
IEnumerable<SecurityTokenHandler>

Gestionnaires de jetons avec lesquels initialiser la nouvelle instance.

Remarques

N’utilisez pas ce constructeur pour tenter de cloner une instance de la SecurityTokenHandlerCollection classe, utilisez plutôt la méthode Clone .

S’applique à

SecurityTokenHandlerCollection(SecurityTokenHandlerConfiguration)

Initialise une nouvelle instance de la SecurityTokenHandlerCollection classe avec la configuration spécifiée.

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)

Paramètres

configuration
SecurityTokenHandlerConfiguration

Configuration de base à associer à la collection.

Remarques

La nouvelle collection ne contient aucun gestionnaire.

S’applique à

SecurityTokenHandlerCollection(IEnumerable<SecurityTokenHandler>, SecurityTokenHandlerConfiguration)

Initialise une nouvelle instance de la SecurityTokenHandlerCollection classe avec les gestionnaires de jetons et la configuration spécifiés.

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)

Paramètres

handlers
IEnumerable<SecurityTokenHandler>

Gestionnaires de jetons avec lesquels initialiser la nouvelle instance.

configuration
SecurityTokenHandlerConfiguration

Configuration de base à associer à la collection.

Remarques

N’utilisez pas ce constructeur pour tenter de cloner une instance de la SecurityTokenHandlerCollection classe, utilisez plutôt la méthode Clone .

S’applique à