예제 #1
0
        internal static LapsConfigSection GetConfiguration()
        {
            LapsConfigSection section = (LapsConfigSection)ConfigurationManager.GetSection(SectionName);

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

            return(section);
        }
예제 #2
0
 static LapsConfigSection()
 {
     LapsConfigSection.Configuration = LapsConfigSection.GetConfiguration();
 }