SecurityTokenHandlerCollection Construtores

Definição

Inicializa uma nova instância da classe SecurityTokenHandlerCollection.Initializes a new instance of the SecurityTokenHandlerCollection class.

Sobrecargas

SecurityTokenHandlerCollection()

Inicializa uma nova instância da classe SecurityTokenHandlerCollection.Initializes a new instance of the SecurityTokenHandlerCollection class.

SecurityTokenHandlerCollection(IEnumerable<SecurityTokenHandler>)

Inicializa uma nova instância da classe SecurityTokenHandlerCollection com os manipuladores de token especificados.Initializes a new instance of the SecurityTokenHandlerCollection class with the specified token handlers.

SecurityTokenHandlerCollection(SecurityTokenHandlerConfiguration)

Inicializa uma nova instância da classe SecurityTokenHandlerCollection com a configuração especificada.Initializes a new instance of the SecurityTokenHandlerCollection class with the specified configuration.

SecurityTokenHandlerCollection(IEnumerable<SecurityTokenHandler>, SecurityTokenHandlerConfiguration)

Inicializa uma nova instância da classe SecurityTokenHandlerCollection com a configuração e os manipuladores de token especificados.Initializes a new instance of the SecurityTokenHandlerCollection class with the specified token handlers and configuration.

SecurityTokenHandlerCollection()

Inicializa uma nova instância da classe SecurityTokenHandlerCollection.Initializes a new instance of the SecurityTokenHandlerCollection class.

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

Comentários

A nova coleção não contém nenhum manipulador.The new collection does not contain any handlers.

Aplica-se a

SecurityTokenHandlerCollection(IEnumerable<SecurityTokenHandler>)

Inicializa uma nova instância da classe SecurityTokenHandlerCollection com os manipuladores de token especificados.Initializes a new instance of the SecurityTokenHandlerCollection class with the specified token handlers.

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

Parâmetros

handlers
IEnumerable<SecurityTokenHandler>

Os manipuladores de token com os quais inicializar a nova instância.The token handlers with which to initialize the new instance.

Comentários

Não use esse construtor para tentar clonar uma instância da SecurityTokenHandlerCollection classe, use o método clone em vez disso.Do not use this constructor to attempt to clone an instance of the SecurityTokenHandlerCollection class, use the Clone method instead.

Aplica-se a

SecurityTokenHandlerCollection(SecurityTokenHandlerConfiguration)

Inicializa uma nova instância da classe SecurityTokenHandlerCollection com a configuração especificada.Initializes a new instance of the SecurityTokenHandlerCollection class with the specified configuration.

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)

Parâmetros

configuration
SecurityTokenHandlerConfiguration

A configuração básica a ser associada à coleção.The base configuration to associate with the collection.

Comentários

A nova coleção não contém nenhum manipulador.The new collection does not contain any handlers.

Aplica-se a

SecurityTokenHandlerCollection(IEnumerable<SecurityTokenHandler>, SecurityTokenHandlerConfiguration)

Inicializa uma nova instância da classe SecurityTokenHandlerCollection com a configuração e os manipuladores de token especificados.Initializes a new instance of the SecurityTokenHandlerCollection class with the specified token handlers and configuration.

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)

Parâmetros

handlers
IEnumerable<SecurityTokenHandler>

Os manipuladores de token com os quais inicializar a nova instância.The token handlers with which to initialize the new instance.

configuration
SecurityTokenHandlerConfiguration

A configuração básica a ser associada à coleção.The base configuration to associate with the collection.

Comentários

Não use esse construtor para tentar clonar uma instância da SecurityTokenHandlerCollection classe, use o método clone em vez disso.Do not use this constructor to attempt to clone an instance of the SecurityTokenHandlerCollection class, use the Clone method instead.

Aplica-se a