我的 Global.asax.cs 中有这个 Application_Error 事件,它将在我的应用程序中发生任何未处理的异常。我能够收到错误消息。我还试图获得的是发生异常的类名和方法名,以便更容易追踪异常的原因和原因。请帮忙。
全球.asax.cs
protected void Application_Error(object sender, EventArgs e)
{
var errMsg = Server.GetLastError().Message;
if (string.IsNullOrWhiteSpace(errMsg)) return;
//Get Class name and method name
//ErrorLog.SaveLog(errMsg, Classname, Methodname);
Context.ClearError();
}