My problem is the opposite of this: How do I convert an HttpRequestBase into an HttpRequest object?
In my ASP.NET MVC application I have a method used by many controlle
This is an another solution which does not require to create a new instance:
var httpRequestBase = myHttpRequest.RequestContext.HttpContext.Request;