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
You'll want to wrap your HttpRequest in a HttpRequestWrapper:
HttpRequest
HttpRequestWrapper
var wrapper = new HttpRequestWrapper(httpRequest);
The HttpRequestWrapper inherits from HttpRequestBase.
HttpRequestBase