可空枚举类型的奇怪行为

发布于 2024-07-19 21:26:42 字数 450 浏览 8 评论 0原文

我使用 Global.asax 通过 Application_EndRequest 事件在每个请求结束时执行日志记录。 但是,我看到存储在 HTTPContext.Current.Items 集合中的某些值有一些奇怪的行为。

下面是可为空枚举的调试输出。 你可以看到有一个值,但是HasValue解析为False?!

{System.Nullable(Of AreaNameEnum)}
    HasValue: False
    hasValue: False
    Value: {System.InvalidOperationException}
    value: ADMIN {0}

我猜测在请求生命周期中访问 HTTPContext.Current 为时已晚 - 但它似乎有时有效,有时无效。 任何人都可以更清楚地了解到底发生了什么吗?

谢谢

I am using Global.asax to perform logging at the end of each request via the Application_EndRequest event. However, I am seeing some odd behavior of certain values stored in the HTTPContext.Current.Items collection.

Below is the debug output for a nullable Enum. You can see that there is a value, but HasValue resolved to False?!

{System.Nullable(Of AreaNameEnum)}
    HasValue: False
    hasValue: False
    Value: {System.InvalidOperationException}
    value: ADMIN {0}

I am guessing that it is too late in the request lifecycle to access the HTTPContext.Current - but it seems to sometimes work and sometimes not. Can anyone shed any more light on exactly what is going on?

Thanks

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

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

发布评论

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

评论(1

孤者何惧 2024-07-26 21:26:42

Nullable 是一个包含布尔值 h​​asValue 和 T 值的结构,其中 T 是值类型。 在本例中是一个枚举。 枚举必须有某个值,在本例中默认为 0,但是 public Value 会抛出异常,因为 hasValue 为 false。

您所看到的是 Nullable 的内部原理。 当 hasValue 为 false 时,您无法将任何内容读入具有任何值的内部值字段。 毕竟,如果 value 可以包含 null,那么在这里使用 Nullable 就没有任何意义了。

Nullable is a structure that contains a boolean hasValue and a T value where T is a value type. In this case an enum. The enum has to have some value in this case the default 0, however the public Value throws an exception because hasValue is false.

What you are seeing is the internals of how Nullable does what it does. You cannot read anything into the internal value field having any value when hasValue is false. After all if value could contain null there wouldn't be any point in using Nullable here.

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