共用方式為


ClaimsAuthenticationManager.LoadCustomConfiguration(XmlNodeList) 方法

定義

在衍生類別中覆寫時,從 XML 載入自訂組態。

public:
 virtual void LoadCustomConfiguration(System::Xml::XmlNodeList ^ nodelist);
public virtual void LoadCustomConfiguration (System.Xml.XmlNodeList nodelist);
abstract member LoadCustomConfiguration : System.Xml.XmlNodeList -> unit
override this.LoadCustomConfiguration : System.Xml.XmlNodeList -> unit
Public Overridable Sub LoadCustomConfiguration (nodelist As XmlNodeList)

參數

nodelist
XmlNodeList

自訂組態項目。 清單中的每個節點的型別為 XmlElement

實作

備註

方法 LoadCustomConfiguration 是由組態基礎結構呼叫。 呼叫這個方法時, nodelist 將會包含組態檔中claimsAuthenticationManager > 元素的最上層子項目 < 。 根據您為衍生類別定義的組態架構,這些元素可能會包含屬性或子項目。 如果組態檔中的 專案下 <claimsAuthenticationManager> 沒有出現任何子專案,則不會呼叫這個方法。

預設實作會擲回 NotImplementedException 。 覆寫衍生類別中的這個方法,以從組態檔啟用宣告驗證管理員的初始化。 例如,組態專案可能會描述驗證宣告主體時要遵循的原則;或者,它們可用來指向要新增至主體之其他宣告的屬性存放區。

適用於