Files
Umbraco-CMS/src/Umbraco.Web/AspNetHttpContextAccessor.cs
2016-07-20 19:28:17 +02:00

21 lines
384 B
C#

using System;
using System.Web;
namespace Umbraco.Web
{
internal class AspNetHttpContextAccessor : IHttpContextAccessor
{
public HttpContext HttpContext
{
get
{
return HttpContext.Current;
}
set
{
throw new NotSupportedException();
}
}
}
}