24 lines
649 B
C#
24 lines
649 B
C#
// Copyright (c) Umbraco.
|
|
// See LICENSE for more details.
|
|
|
|
using Umbraco.Web;
|
|
|
|
namespace Umbraco.Core.Events
|
|
{
|
|
/// <summary>
|
|
/// Notification raised on each request end.
|
|
/// </summary>
|
|
public class UmbracoRequestEnd : INotification
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="UmbracoRequestEnd"/> class.
|
|
/// </summary>
|
|
public UmbracoRequestEnd(IUmbracoContext umbracoContext) => UmbracoContext = umbracoContext;
|
|
|
|
/// <summary>
|
|
/// Gets the <see cref="IUmbracoContext"/>
|
|
/// </summary>
|
|
public IUmbracoContext UmbracoContext { get; }
|
|
}
|
|
}
|