internal static PasswordChangeConfigSection GetConfiguration()
        {
            PasswordChangeConfigSection section = (PasswordChangeConfigSection)ConfigurationManager.GetSection(SectionName);

            if (section == null)
            {
                section = new PasswordChangeConfigSection();
            }

            return(section);
        }
 static PasswordChangeConfigSection()
 {
     PasswordChangeConfigSection.Configuration = PasswordChangeConfigSection.GetConfiguration();
 }