SecurityTokenHandlerCollection Costruttori

Definizione

Inizializza una nuova istanza della classe SecurityTokenHandlerCollection.

Overload

SecurityTokenHandlerCollection()

Inizializza una nuova istanza della classe SecurityTokenHandlerCollection.

SecurityTokenHandlerCollection(IEnumerable<SecurityTokenHandler>)

Inizializza una nuova istanza della classe SecurityTokenHandlerCollection con i gestori di token specificati.

SecurityTokenHandlerCollection(SecurityTokenHandlerConfiguration)

Inizializza una nuova istanza della classe SecurityTokenHandlerCollection con la configurazione specificata.

SecurityTokenHandlerCollection(IEnumerable<SecurityTokenHandler>, SecurityTokenHandlerConfiguration)

Inizializza una nuova istanza della classe SecurityTokenHandlerCollection con i gestori di token e la configurazione specificati.

SecurityTokenHandlerCollection()

Inizializza una nuova istanza della classe SecurityTokenHandlerCollection.

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

Commenti

La nuova raccolta non contiene gestori.

Si applica a

SecurityTokenHandlerCollection(IEnumerable<SecurityTokenHandler>)

Inizializza una nuova istanza della classe SecurityTokenHandlerCollection con i gestori di token specificati.

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

Parametri

handlers
IEnumerable<SecurityTokenHandler>

Gestori di token con cui inizializzare la nuova istanza.

Commenti

Non usare questo costruttore per tentare di clonare un'istanza della SecurityTokenHandlerCollection classe , utilizzare invece il metodo Clone .

Si applica a

SecurityTokenHandlerCollection(SecurityTokenHandlerConfiguration)

Inizializza una nuova istanza della classe SecurityTokenHandlerCollection con la configurazione specificata.

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)

Parametri

configuration
SecurityTokenHandlerConfiguration

Configurazione di base da associare alla raccolta.

Commenti

La nuova raccolta non contiene gestori.

Si applica a

SecurityTokenHandlerCollection(IEnumerable<SecurityTokenHandler>, SecurityTokenHandlerConfiguration)

Inizializza una nuova istanza della classe SecurityTokenHandlerCollection con i gestori di token e la configurazione specificati.

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)

Parametri

handlers
IEnumerable<SecurityTokenHandler>

Gestori di token con cui inizializzare la nuova istanza.

configuration
SecurityTokenHandlerConfiguration

Configurazione di base da associare alla raccolta.

Commenti

Non usare questo costruttore per tentare di clonare un'istanza della SecurityTokenHandlerCollection classe , utilizzare invece il metodo Clone .

Si applica a