コード例 #1
0
ファイル: WebResourcesSection.cs プロジェクト: Epitomy/CMS
        public static WebResourcesSection GetSection(string fileName)
        {
            WebResourcesSection section = new WebResourcesSection();

            section.GetSection(fileName, SectionName);
            return(section);
        }
コード例 #2
0
ファイル: WebResourcesSection.cs プロジェクト: Epitomy/CMS
 public static WebResourcesSection GetSection(string fileName)
 {
     WebResourcesSection section = new WebResourcesSection();
     section.GetSection(fileName, SectionName);
     return section;
 }
コード例 #3
0
ファイル: ConfigurationManager.cs プロジェクト: Godoy/CMS
 static ConfigurationManager()
 {
     defaultSection = WebResourcesSection.GetSection();
 }