可空枚举类型的奇怪行为
我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Nullable 是一个包含布尔值 hasValue 和 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.