ConfigurationBasedIssuerNameRegistry.LoadCustomConfiguration Method

Definition

Loads the trusted issuers from configuration.

public:
 override void LoadCustomConfiguration(System::Xml::XmlNodeList ^ customConfiguration);
public override void LoadCustomConfiguration (System.Xml.XmlNodeList customConfiguration);
override this.LoadCustomConfiguration : System.Xml.XmlNodeList -> unit
Public Overrides Sub LoadCustomConfiguration (customConfiguration As XmlNodeList)

Parameters

customConfiguration
XmlNodeList

The XML that represents the map of trusted issuers that is specified in the configuration file.

Exceptions

customConfiguration is null.

The configuration contains one or more elements that are not recognized.

Remarks

The LoadCustomConfiguration method is called by the configuration infrastructure. When this method is called, the nodelist will contain the top-level child elements of the <issuerNameRegistry> element from the configuration file. Each of these may, in turn, contain attributes or child elements depending on the configuration schema you define for your derived class.

This method is called by the configuration infrastructure. The default implementation loads configuration from a <trustedIssuers> element (configured under the <issuerNameRegistry> element). You can override this method to provide support for your own custom configuration elements in derived classes.

Applies to