Files
Umbraco-CMS/src/Umbraco.Web/AspNetHttpContextAccessor.cs
2018-11-22 14:05:51 +00: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();
}
}
}
}