2017-07-20 11:21:28 +02:00
|
|
|
|
using System.Web;
|
2016-06-09 11:57:13 +02:00
|
|
|
|
|
|
|
|
|
|
namespace Umbraco.Web
|
|
|
|
|
|
{
|
|
|
|
|
|
public interface IHttpContextAccessor
|
|
|
|
|
|
{
|
2020-02-10 13:09:26 +01:00
|
|
|
|
HttpContextBase HttpContext { get; set; }
|
2016-06-09 11:57:13 +02:00
|
|
|
|
}
|
2017-07-20 11:21:28 +02:00
|
|
|
|
}
|