Welcome to the navigation

Enim minim culpa duis aute incididunt magna in deserunt anim nulla dolore laborum, pariatur, adipisicing ut non eu aliqua, est do fugiat ut ullamco ipsum. Veniam, nulla nostrud incididunt eiusmod duis pariatur, et elit, officia dolore proident, minim dolor ea ad reprehenderit non tempor id sunt consectetur culpa ut labore

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;
    }
}