简体   繁体   中英

Accessing ViewContext from class library

Is it possible to access ViewContext from class library? I am in need of getting names of current View and Controller's action. I added both System.Web.dll and System.Web.Mvc in my class library project but still unable to find a way to get what I require. Although I can access current context using System.Web.HttpContext.Current .

You can access current route information like this:

var httpContext = new HttpContextWrapper(HttpContext.Current);
var routeData = System.Web.Routing.RouteTable.Routes.GetRouteData(httpContext);

var controllerName = routeData.Values["controller"].ToString();
var actionName = routeData.Values["action"].ToString();

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM