为什么 UnhandledExceptionEventArgs.ExceptionObject 是一个对象而不是 Exception?

发布于 2024-07-23 07:42:01 字数 492 浏览 4 评论 0原文

为什么UnhandledExceptionEventArgs.ExceptionObject是一个对象而不是Exception

我正在附加到 AppDomain.UnhandledException

我想将 UnhandledExceptionEventArgs.ExceptionObject 转换为 Exception 并询问它。

考虑到这一点,它会永远为零吗?

MSDN 文档 并不是很有用。

获取未处理的异常对象。

Why is UnhandledExceptionEventArgs.ExceptionObject an object and not an Exception?

I am attaching to AppDomain.UnhandledException.

I would like to cast UnhandledExceptionEventArgs.ExceptionObject to an Exception and interogate it.

And with this in mind will it ever be null?

The MSDN documentation is not exatly useful.

Gets the unhandled exception object.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

街道布景 2024-07-30 07:42:01

不能将其类型化为 Exception,因为可能会在 .Net 中抛出并非派生自 System.Exception 的对象。 这在 C# 或 VB.Net 中是不可能的,但在其他基于 CLR 的语言中是可能的。 因此 API 必须支持这种可能性并使用类型对象。

因此,虽然它不应该为 null,但实际上它可能不是 System.Exception。

有关更多详细信息,请参阅 CLI 规范第 10.5 节(特别是 CLS 规则 40)

This cannot be typed to Exception because it's possible to throw objects in .Net that do not derive from System.Exception. This is not possible in C# or VB.Net but it is possible in other CLR based languages. Hence the API must support this possibility and uses the type object.

So while it shouldn't ever be null, it may not in fact be a System.Exception.

See CLI spec section 10.5 (specifically CLS rule 40) for more details

花辞树 2024-07-30 07:42:01

除了 Jared 已经提到的内容之外,如果已将 RuntimeCompatibilityAttribute(WrapNonExceptionThrows=true) 应用于程序集,则可以在 .NET Framework 2.0 及更高版本中安全地转换为 Exception(将由 C# 和 VB 编译器自动添加)。

应用此属性后,非 Exception“异常”将被包装在 RuntimeWrappedException 中。

In addition to what Jared has already mentioned, you can safely cast to Exception in .NET Framework 2.0 and higher if RuntimeCompatibilityAttribute(WrapNonExceptionThrows=true) has been applied to your assembly (will be added automatically by the C# and VB compilers).

When this attribute has been applied, non-Exception "exceptions" will be wrapped in RuntimeWrappedException.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文