Sdílet prostřednictvím


SecurityTokenHandlerCollection Konstruktory

Definice

Inicializuje novou instanci SecurityTokenHandlerCollection třídy .

Přetížení

SecurityTokenHandlerCollection()

Inicializuje novou instanci SecurityTokenHandlerCollection třídy .

SecurityTokenHandlerCollection(IEnumerable<SecurityTokenHandler>)

Inicializuje novou instanci SecurityTokenHandlerCollection třídy se zadanými obslužnými rutinami tokenu.

SecurityTokenHandlerCollection(SecurityTokenHandlerConfiguration)

Inicializuje novou instanci SecurityTokenHandlerCollection třídy se zadanou konfigurací.

SecurityTokenHandlerCollection(IEnumerable<SecurityTokenHandler>, SecurityTokenHandlerConfiguration)

Inicializuje novou instanci SecurityTokenHandlerCollection třídy se zadanými obslužnými rutinami tokenu a konfigurací.

SecurityTokenHandlerCollection()

Inicializuje novou instanci SecurityTokenHandlerCollection třídy .

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

Poznámky

Nová kolekce neobsahuje žádné obslužné rutiny.

Platí pro

SecurityTokenHandlerCollection(IEnumerable<SecurityTokenHandler>)

Inicializuje novou instanci SecurityTokenHandlerCollection třídy se zadanými obslužnými rutinami tokenu.

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

Parametry

handlers
IEnumerable<SecurityTokenHandler>

Obslužné rutiny tokenů, pomocí kterých chcete inicializovat novou instanci.

Poznámky

Nepoužívejte tento konstruktor k pokusu o klonování instance SecurityTokenHandlerCollection třídy, použijte metodu Clone .

Platí pro

SecurityTokenHandlerCollection(SecurityTokenHandlerConfiguration)

Inicializuje novou instanci SecurityTokenHandlerCollection třídy se zadanou konfigurací.

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)

Parametry

configuration
SecurityTokenHandlerConfiguration

Základní konfigurace, která se má přidružit ke kolekci.

Poznámky

Nová kolekce neobsahuje žádné obslužné rutiny.

Platí pro

SecurityTokenHandlerCollection(IEnumerable<SecurityTokenHandler>, SecurityTokenHandlerConfiguration)

Inicializuje novou instanci SecurityTokenHandlerCollection třídy se zadanými obslužnými rutinami tokenu a konfigurací.

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)

Parametry

handlers
IEnumerable<SecurityTokenHandler>

Obslužné rutiny tokenů, pomocí kterých chcete inicializovat novou instanci.

configuration
SecurityTokenHandlerConfiguration

Základní konfigurace, která se má přidružit ke kolekci.

Poznámky

Nepoužívejte tento konstruktor k pokusu o klonování instance SecurityTokenHandlerCollection třídy, použijte metodu Clone .

Platí pro