.net – 在mscorlib.dll中发生类型“System.Threading.ThreadAbortException”的第一次机会异常

前端之家收集整理的这篇文章主要介绍了.net – 在mscorlib.dll中发生类型“System.Threading.ThreadAbortException”的第一次机会异常前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在开发asp.net应用程序..当我尝试编译和运行应用程序;它运行成功。

但是当我尝试调试应用程序时,会给我任何错误

mscorlib.dll中出现了“System.Threading.ThreadAbortException”类型的第一个机会异常

它不会在任何特定的代码错误。它给出任何代码行(不确定)..然后网页显示 – “服务器应用程序不可用”错误错误

即使我试图在即时窗口/快速观察中解析/执行一些声明 – 它给我上面的错误..

例如,我在XElement中加载了一个xml文档(超过10000行),当我尝试通过xpath检查一些属性值为XElementObj.XPathSelectElement(“/ asdf / asd / wqer / xyz”)..它给出了上面的错误(不是所有的时间,而是随机)。

任何人有任何想法这个..请帮助。

我有类似的东西,从另一个问题发现了 this answer

If you want to pinpoint where the
exceptions are occurring,you can
select the Debug->Exceptions menu
item,and in the dialog that appears,
check the first checkBox for “Common
Language Runtime Exceptions”. This
will make the debugger break as soon
as an exception occurs instead of only
breaking on unhandled exceptions.

This is also one reason why it is generally a bad idea to catch generic exceptions unless you are clearly logging the information caught.

原文链接:https://www.f2er.com/windows/372980.html

猜你在找的Windows相关文章