See Also: IConfigurationSectionHandler Members
Important System.Configuration.IConfigurationSectionHandler is deprecated in .NET Framework 2.0 and above. But, because it is used internally, it has been kept. You can find an example at How to: Create Custom Configuration Sections Using IConfigurationSectionHandler. If you use the previous example, please build it with the .NET Framework version 1.0 or 1.1.
In .NET Framework version 2.0 and above, you must instead derive from the System.Configuration.ConfigurationSection class to implement the related configuration section handler. You can find an example at How to: Create Custom Configuration Sections Using ConfigurationSection.
Instances of the System.Configuration.IConfigurationSectionHandler class must be thread safe and stateless. The IConfigurationSectionHandler.Create(object, object, System.Xml.XmlNode) method must be callable from multiple threads simultaneously.
Furthermore, the configuration object generated by the IConfigurationSectionHandler.Create(object, object, System.Xml.XmlNode) method must be thread safe and immutable. Because the configuration objects are cached by the configuration system, it is important not to modify the parent argument to the IConfigurationSectionHandler.Create(object, object, System.Xml.XmlNode) method. For example, if the return value of IConfigurationSectionHandler.Create(object, object, System.Xml.XmlNode) is only a small modification of the parent, actual modifications must be made on a clone of the parent, not the original.