在我的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?我该如何处理这类案件?
解决方法
使用字符串host = requestContext.HttpContext.Request.Url.Host;