2 implementations of GetSection
System.Configuration (1)
System\Configuration\BaseConfigurationRecord.cs (1)
207public object GetSection(string configKey) {
System.Web (1)
Configuration\ErrorRuntimeConfig.cs (1)
52object IInternalConfigRecord.GetSection(string configKey) {
6 references to GetSection
System.Configuration (1)
System\Configuration\ClientConfigurationSystem.cs (1)
215return configRecord.GetSection(sectionName);
System.Web (5)
Configuration\HttpConfigurationSystem.cs (2)
215return pathData.ConfigRecord.GetSection(sectionName); 233return pathData.ConfigRecord.GetSection(sectionName);
Configuration\RuntimeConfig.cs (1)
619return _configRecord.GetSection(sectionName);
HttpContext.cs (1)
1508return GetConfigurationPathData().ConfigRecord.GetSection(sectionName);
Util\AppSettings.cs (1)
173return appPathData.ConfigRecord.GetSection("appSettings") as NameValueCollection;