GetSection() публичный статический Метод

public static GetSection ( string sectionName ) : object
sectionName string
Результат object
 internal static object GetSection(string sectionName)
 {
     return(ConfigurationManager.GetSection(sectionName));
 }
Пример #2
0
 private static AppConfiguration LoadCurrent()
 {
     return((AppConfiguration)Manager.GetSection(AppConfiguration.SectionName));
 }
Пример #3
0
 public static object GetConfig(string sectionName)
 {
     return(ConfigurationManager.GetSection(sectionName));
 }