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