我想知道是否可以在不修改 web.config 或 global.asax 文件的情况下捕获未处理的错误。
理想情况下,我会使用 WebActivator 包并具有以下内容:
[assembly: WebActivator.PostApplicationStartMethod(typeof(MyProject.Initialize), "Start")]
namespace MyProject
{
using System;
using System.Collections.Generic;
using System.Web;
using System.Web.Mvc;
internal static Initialize
{
public static void Start()
{
// this doesn't work
HttpContext.Current.ApplicationInstance.Error += ApplicationInstance_Error;
}
// this never fires
static void ApplicationInstance_Error(object sender, EventArgs e)
{
throw new NotImplementedException();
}
}
}
问题 #1: 是否可以在不修改 web.config 或 global.asax 文件的情况下捕获未处理的错误?
问题2: 如何?
更新:我在下面发布了一个答案。我不确定这是否是最好的方法。任何意见表示赞赏。