Welcome to the navigation

Occaecat mollit ea veniam, pariatur, sunt exercitation non laborum, cupidatat ad aliqua, sed anim cillum officia esse in lorem enim aliquip irure tempor ut nisi. Laborum, ad eu aliqua, aute amet, mollit incididunt cupidatat lorem in velit tempor et deserunt dolor nisi elit, est exercitation culpa in ut laboris ullamco

Yeah, this will be replaced... But please enjoy the search!

Get or construct a HttpContextWrapper inside a Web API Controller

The HttpContextWrapper is an essential part of the ASP.NET Web API since you will be able to not only use the common HttpContext data but also lots of other useful properties and methods. It is not in general recommended to use the HttpContextWrapper in testing and mocking, in such cases you should instad use the HttpContextBase from which the HttpContextWrapper inherits.

private HttpContextWrapper GetHttpContext(HttpRequestMessage request = null)
{
    request = request ?? Request;
 
    if (request.Properties.ContainsKey("MS_HttpContext"))
    {
        return ((HttpContextWrapper)request.Properties["MS_HttpContext"]);
    }
    else if (HttpContext.Current != null)
    {
        return new HttpContextWrapper(HttpContext.Current);
    }
    else
    {
        return null;
    }
}