在没有MVC的纯ASP.NET Web API服务中,我们是否还需要Global.asax中的AreaRegistration.RegisterAllAreas()

时间:2013-08-23 13:54:24

标签: c# asp.net-mvc-4 asp.net-web-api

我正在尝试创建一个干净的ASP.NET Web API服务,如果可能的话,不引用MVC程序集。 我关注了此博客http://www.codeproject.com/Articles/615805/Creating-a-Clean-Minimal-Footprint-ASP-NET-WebAPI 但是在Global.asax中使用这一行我仍然需要导入System.Web.Mvc程序集。如果我将其删除,会对我的网络API服务产生影响吗?我尝试在没有它的情况下在我的本地运行我的服务,我没有遇到任何错误。

protected void Application_Start()
{
        //AreaRegistration.RegisterAllAreas(); do we still need this?

        WebApiConfig.Register(GlobalConfiguration.Configuration);  
        HandlerConfig.RegisterGlobalHandlers(GlobalConfiguration.Configuration);
        FilterConfig.RegisterGlobalFilters(GlobalConfiguration.Configuration.Filters);            

}

1 个答案:

答案 0 :(得分:19)

如果您没有使用MVC区域,则无需拨打AreaRegistration.RegisterAllAreas()