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