1 instantiation of CustomErrorsSection
System.Web (1)
Configuration\CustomErrorsSection.cs (1)
217_default = new CustomErrorsSection();
18 references to CustomErrorsSection
System.Web (15)
Configuration\CustomErrorsSection.cs (6)
69private static CustomErrorsSection _default = null; 165CustomErrorsSection parent = parentElement as CustomErrorsSection; 197internal static CustomErrorsSection GetSettings(HttpContext context) { 201internal static CustomErrorsSection GetSettings(HttpContext context, bool canThrow) { 202CustomErrorsSection ce = null;
Configuration\RuntimeConfig.cs (3)
282internal CustomErrorsSection CustomErrors { 284return (CustomErrorsSection) GetSection("system.web/customErrors", typeof(CustomErrorsSection));
Configuration\SystemWebSectionGroup.cs (2)
60public CustomErrorsSection CustomErrors { 62return (CustomErrorsSection) Sections["customErrors"];
HttpContext.cs (1)
1373return CustomErrorsSection.GetSettings(this).CustomErrorsEnabled(_request);
HttpResponse.cs (2)
1329CustomErrorsSection customErrorsSetting = null; 1351customErrorsSetting = CustomErrorsSection.GetSettings(_context, canThrow);
UI\Page.cs (1)
1573_response.RedirectToErrorPage(_errorPage, CustomErrorsSection.GetSettings(Context).RedirectMode);
System.Web.Extensions (3)
UI\CustomErrorsSectionWrapper.cs (2)
13private readonly CustomErrorsSection _customErrorsSection; 15public CustomErrorsSectionWrapper(CustomErrorsSection customErrorsSection) {
UI\ScriptManager.cs (1)
1120(CustomErrorsSection)WebConfigurationManager.GetSection("system.web/customErrors"));