为什么 HttpContext 不包含“Host”?标题?

发布于 2024-12-21 02:53:37 字数 592 浏览 1 评论 0原文

在我的 MVC3 应用程序中,我有一个自定义控制器工厂,它的 CreateController() 方法工作如下:

  public IController CreateController(RequestContext requestContext, string controllerName)
   {
       string host = requestContext.HttpContext.Request.Headers["Host"];
       if( !host.EndsWith( SomeHardcodedString ) ) { // FAILS HERE
           //some special action
       }
       //proceed with controller creation
   }

问题是 host 有时为 null - 我看到 NullReferenceException 对于某些请求,异常堆栈跟踪恰好指向该行。

为什么会在这里检索 null ?我该如何处理此类情况?

In my MVC3 application I have a custom controller factory that has CreateController()method working as follows:

  public IController CreateController(RequestContext requestContext, string controllerName)
   {
       string host = requestContext.HttpContext.Request.Headers["Host"];
       if( !host.EndsWith( SomeHardcodedString ) ) { // FAILS HERE
           //some special action
       }
       //proceed with controller creation
   }

the problem is host is null sometimes - I see NullReferenceException for some requests and the exception stack trace points exactly at that line.

Why would null be retrieved here? How do I handle such cases?

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

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

发布评论

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

评论(2

吃不饱 2024-12-28 02:53:37

使用 string host = requestContext.HttpContext.Request.Url.Host;

Use string host = requestContext.HttpContext.Request.Url.Host;

过度放纵 2024-12-28 02:53:37

要处理它,您可能需要尝试以下操作:

var host = requestContext.HttpContext.Request.Url.Host;

if (host != null)
    if(!host.EndsWith("SomeHardcodedString")) 
else
   // Handle it

To handle it, you might want to try something like:

var host = requestContext.HttpContext.Request.Url.Host;

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