GetSection() public static method

public static GetSection ( string sectionName ) : object
sectionName string
return object
 internal static object GetSection(string sectionName)
 {
     return(ConfigurationManager.GetSection(sectionName));
 }
Beispiel #2
0
 private static AppConfiguration LoadCurrent()
 {
     return((AppConfiguration)Manager.GetSection(AppConfiguration.SectionName));
 }
Beispiel #3
0
 public static object GetConfig(string sectionName)
 {
     return(ConfigurationManager.GetSection(sectionName));
 }