ConfigurationElementCollection.CreateNewElement Method
.NET Framework 4.6 and 4.5
When overridden in a derived class, creates a new ConfigurationElement.
Namespace: System.Configuration
Assembly: System.Configuration (in System.Configuration.dll)
Override the CreateNewElement method to create custom ConfigurationElement objects of a specific type. When a collection is loaded from the configuration file, CreateNewElement is called to create individual elements. CreateNewElement must be overridden in classes that derive from the ConfigurationElementCollection class.
The following code example shows how to override the CreateNewElement method.
Show: