SecurityTokenHandlerCollection 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
初始化 SecurityTokenHandlerCollection 類別的新執行個體。
多載
SecurityTokenHandlerCollection() |
初始化 SecurityTokenHandlerCollection 類別的新執行個體。 |
SecurityTokenHandlerCollection(IEnumerable<SecurityTokenHandler>) |
使用指定的權杖處理常式,初始化 SecurityTokenHandlerCollection 類別的新執行個體。 |
SecurityTokenHandlerCollection(SecurityTokenHandlerConfiguration) |
使用指定的組態,初始化 SecurityTokenHandlerCollection 類別的新執行個體。 |
SecurityTokenHandlerCollection(IEnumerable<SecurityTokenHandler>, SecurityTokenHandlerConfiguration) |
使用指定的權杖處理常式和組態,初始化 SecurityTokenHandlerCollection 類別的新執行個體。 |
SecurityTokenHandlerCollection()
初始化 SecurityTokenHandlerCollection 類別的新執行個體。
public:
SecurityTokenHandlerCollection();
public SecurityTokenHandlerCollection ();
Public Sub New ()
備註
新的集合不包含任何處理程式。
適用於
SecurityTokenHandlerCollection(IEnumerable<SecurityTokenHandler>)
使用指定的權杖處理常式,初始化 SecurityTokenHandlerCollection 類別的新執行個體。
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))
參數
- handlers
- IEnumerable<SecurityTokenHandler>
用來初始化新執行個體的權杖處理常式。
備註
請勿使用此建構函式嘗試複製 類別的 SecurityTokenHandlerCollection 實例,請改用 Clone 方法。
適用於
SecurityTokenHandlerCollection(SecurityTokenHandlerConfiguration)
使用指定的組態,初始化 SecurityTokenHandlerCollection 類別的新執行個體。
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)
參數
- configuration
- SecurityTokenHandlerConfiguration
與集合相關聯的基本組態。
備註
新的集合不包含任何處理程式。
適用於
SecurityTokenHandlerCollection(IEnumerable<SecurityTokenHandler>, SecurityTokenHandlerConfiguration)
使用指定的權杖處理常式和組態,初始化 SecurityTokenHandlerCollection 類別的新執行個體。
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)
參數
- handlers
- IEnumerable<SecurityTokenHandler>
用來初始化新執行個體的權杖處理常式。
- configuration
- SecurityTokenHandlerConfiguration
與集合相關聯的基本組態。
備註
請勿使用此建構函式嘗試複製 類別的 SecurityTokenHandlerCollection 實例,請改用 Clone 方法。