Custom configuration section example stolen from http://msdn.microsoft.com/en-us/library/2tw134k3.aspx
Inheritance: System.Configuration.ConfigurationSection
        /// <inheritdoc />
        public void Apply(ConfigurationSection section)
        {
            Ensure.ArgumentNotNull(section, "section");
            Ensure.ArgumentTypeAssignableFrom(typeof(CustomConfigurationSection), section.GetType(), "section");

            this.section = (CustomConfigurationSection)section;
        }