Files
Umbraco-CMS/src/Umbraco.Web/AspNetHttpContextAccessor.cs
2021-02-21 11:40:51 +01:00

15 lines
295 B
C#

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