using System.Web; namespace Umbraco.Web { /// /// Used to retrieve the HttpContext /// /// /// NOTE: This has a singleton lifespan /// public interface IHttpContextAccessor { HttpContextBase Value { get; } } }