Removed all reflection calls to BindingFlags.NonPublic which was mostly used by DynamicNode, this will not work in medium trust.
15 lines
599 B
C#
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);
|
|
}
|
|
} |