本文介绍了有没有在C#中的集中错误处理的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有没有办法集中的错误处理或例外处理,而无需使用尝试捕捉方法?
Is there a way to centralize the error handling or exceptions handling without using try catch methods?
推荐答案
如果这是ASP.NET可以将的Global.asax
文件添加到网站,并办理的Application_Error
方法。
If this is for ASP.NET you can add a Global.asax
file to the website and handle the Application_Error
method.
这是怎么我一般使用它:
This is how I generally use it:
void Application_Error(object sender, EventArgs e)
{
// Code that runs when an unhandled error occurs
if (!System.Diagnostics.EventLog.SourceExists("MySource"))
{
System.Diagnostics.EventLog.CreateEventSource("MySource",
"Application");
}
System.Diagnostics.EventLog.WriteEntry("MySource",
Server.GetLastError().ToString());
}
这篇关于有没有在C#中的集中错误处理的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!