System.NullReferenceException 检查 if != null 时

发布于 2024-11-03 17:32:30 字数 239 浏览 1 评论 0原文

我正在使用 ASHX 处理程序,我希望处理程序检查 Session 是否 != null。

if (context.Session["Username"] != null)

我收到此错误指向这一行:

System.NullReferenceException:未将对象引用设置为对象的实例。

有什么问题吗?

I'm using an ASHX handler, i want the handler to check if Session != null.

if (context.Session["Username"] != null)

And i get this error pointing this line:

System.NullReferenceException: Object reference not set to an instance of an object.

What's the problem?

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

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

发布评论

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

评论(4

丑疤怪 2024-11-10 17:32:30
if (context.Session["Username"] != null)

您的处理程序是否实现 IRequiresSessionState< /a>?否则会话可能不可用。

来自 MSDN

指定目标 HTTP 处理程序
需要读写权限
会话状态值。这是一个标记
接口并且没有方法。

if (context.Session["Username"] != null)

Does your handler implement IRequiresSessionState? Otherwise Session might not be available.

From MSDN:

Specifies that the target HTTP handler
requires read and write access to
session-state values. This is a marker
interface and has no methods.

感情洁癖 2024-11-10 17:32:30

像这样使用它。封装对象之一可能已经为空:

if (context != null)
  if (context.Session != null)
    if (context.Session["Username"] != null) {
      // Do stuff
}

Use it like this. One of the encapsulating objects may be already null:

if (context != null)
  if (context.Session != null)
    if (context.Session["Username"] != null) {
      // Do stuff
}
破晓 2024-11-10 17:32:30

是的,我想说首先检查上下文是否不为空。

Yeah I'd say that check to see if the context is not null first.

糖粟与秋泊 2024-11-10 17:32:30

我对 .ashx 文件也有类似的问题。解决方案是处理程序必须实现 IReadOnlySessionState(用于只读访问)或 IRequiresSessionState(用于读写访问)。例如:

public class myModule: IHttpHandler, IRequiresSessionState { ... }

这些接口不需要任何额外的代码,而是充当框架的标记。

希望这有帮助。

乔纳森

I had a similar problem with an .ashx file. The solution was that the handler has to implement IReadOnlySessionState (for read-only access) or IRequiresSessionState (for read-write access). eg:

public class myModule: IHttpHandler, IRequiresSessionState { ... }

These Interfaces do not need any additional code but act as markers for the framework.

Hope that this helps.

Jonathan

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