Files
Umbraco-CMS/src/Umbraco.Web/IApplicationEventHandler.cs
Shannon Deminick bee73cce12 Changed IApplicationEvents to IApplicationEventHandler.
Removed all reflection calls to BindingFlags.NonPublic which was mostly used by DynamicNode, this will
not work in medium trust.
2012-08-22 05:21:02 +06:00

15 lines
599 B
C#

using Umbraco.Core;
using umbraco.interfaces;
namespace Umbraco.Web
{
/// <summary>
/// Custom IApplicationStartupHandler that auto subscribes to the applications events
/// </summary>
public interface IApplicationEventHandler : IApplicationStartupHandler
{
void OnApplicationInitialized(UmbracoApplication httpApplication, ApplicationContext applicationContext);
void OnApplicationStarting(UmbracoApplication httpApplication, ApplicationContext applicationContext);
void OnApplicationStarted(UmbracoApplication httpApplication, ApplicationContext applicationContext);
}
}