本文介绍了如何获得在ASP.NET控制器中的'MvcApplication“实例?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我觉得 MvcApplication
是一个全球性的单一>。我想获得 MvcApplication
的实例在控制器中。然后,我把下面的code控制器中:
I think MvcApplication
is a global singleton. I want to get the instance of MvcApplication
in the controller. Then I put the following code in controller:
MvcApplication app = HttpContext.Current.Application as MvcApplication;
它给了我一个错误:
It gives me an error:
错误2'System.Web.HttpContextBase不包含当前和没有扩展方法当前接受型System.Web.HttpContextBase第一个参数的定义可以找到(是否缺少使用指令或程序集引用?)
为什么呢?如何访问 MvcApplication
控制器?
Why? How do I access MvcApplication
in the controller?
推荐答案
试试这个:
var app = HttpContext.ApplicationInstance as MvcApplication;
这篇关于如何获得在ASP.NET控制器中的'MvcApplication“实例?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!