Files
Umbraco-CMS/src/Umbraco.Core/ObjectResolution/WebHttpContextFactory.cs

12 lines
277 B
C#
Raw Normal View History

using System.Web;
namespace Umbraco.Core.ObjectResolution
{
public class WebHttpContextFactory : IHttpContextFactory
{
public HttpContextBase Context
{
get { return new HttpContextWrapper(HttpContext.Current); }
}
}
}