/// <summary>
 /// <para>Initialize a new instance of the <see cref="ConfigurationSettings"/> class with a default section name.</para>
 /// </summary>
 /// <param name="applicationName">
 /// <para>The name of the application for these settings.</para>
 /// </param>
 public ConfigurationSettings(string applicationName)
 {
     this.applicationName  = applicationName;
     configurationSections = new ConfigurationSectionDataCollection();
     xmlIncludeTypes       = new XmlIncludeTypeDataCollection();
 }
 /// <summary>
 /// <para>Initialize a new instance of the <see cref="ConfigurationSettings"/> class with a default section name.</para>
 /// </summary>
 /// <param name="applicationName">
 /// <para>The name of the application for these settings.</para>
 /// </param>
 public ConfigurationSettings(string applicationName)
 {
     this.applicationName = applicationName;
     configurationSections = new ConfigurationSectionDataCollection();
     xmlIncludeTypes = new XmlIncludeTypeDataCollection();
 }