Files
Umbraco-CMS/src/Umbraco.Web.Common/Lifetime/IUmbracoRequestLifetimeManager.cs
2020-03-31 15:02:02 +02:00

11 lines
236 B
C#

using Microsoft.AspNetCore.Http;
namespace Umbraco.Web.Common.Lifetime
{
public interface IUmbracoRequestLifetimeManager
{
void InitRequest(HttpContext context);
void EndRequest(HttpContext context);
}
}