My urls are as follows:
www.example.com/{languagecode}/{controller}/{action}/{id}
where the language code is en-us etc.
From the OnActionExecuting event, how can I get these values?
protected override void OnActionExecuting(System.Web.Mvc.ActionExecutingContext filterContext) { var languagecode = filterContext.RouteData.Values["languagecode"]; base.OnActionExecuting(filterContext); }