21 lines
384 B
C#
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();
|
|
}
|
|
}
|
|
}
|
|
}
|