ICustomIdentityConfiguration.LoadCustomConfiguration(XmlNodeList) Method

Definition

Loads custom configuration from XML. Override this method to provide custom handling of configuration elements.

public:
 void LoadCustomConfiguration(System::Xml::XmlNodeList ^ nodeList);
public void LoadCustomConfiguration (System.Xml.XmlNodeList nodeList);
abstract member LoadCustomConfiguration : System.Xml.XmlNodeList -> unit
Public Sub LoadCustomConfiguration (nodeList As XmlNodeList)

Parameters

nodeList
XmlNodeList

The XML nodes that contain the custom configuration. Each node in the list is of type XmlElement.

Remarks

The LoadCustomConfiguration method is called by the configuration infrastructure. When this method is called, the nodelist parameter contains the top-level child elements of the parent element that configures the object class from the configuration file. For example, a class derived from IssuerNameRegistry, will have the child elements of the <issuerNameRegistry> element passed in the nodelist parameter. The nodelist is composed entirely of XmlElement objects. Each of these may have attributes and child elements depending on the configuration schema defined for the class that is being configured.

Applies to