If I am writing an ActionFilter like this
public override void OnActionExecuting(ActionExecutingContext filterContext)
within this method, I can also get access to current context via HttpContext.Current. I am just wondering what is the difference between these two contexts?
From an article on filters: