SecurityTokenHandlerCollection Konstruktory

Definice

Inicializuje novou instanci SecurityTokenHandlerCollection třídy.

Přetížení

Name Description
SecurityTokenHandlerCollection()

Inicializuje novou instanci SecurityTokenHandlerCollection třídy.

SecurityTokenHandlerCollection(IEnumerable<SecurityTokenHandler>)

Inicializuje novou instanci SecurityTokenHandlerCollection třídy pomocí určených obslužných rutin 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 pomocí určených obslužných rutin 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 tokenu, se kterými se má inicializovat nová instance.

Poznámky

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

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 k 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 tokenu, se kterými se má inicializovat nová instance.

configuration
SecurityTokenHandlerConfiguration

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

Poznámky

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

Platí pro