using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace umbraco.interfaces { /// /// Any class that implements this interface will be instantiated at application startup /// /// /// NOTE: It is not recommended to use this interface and instead use IApplicationEventHandler /// and bind to any custom events in the OnApplicationInitialized method. /// [Obsolete("This interface is obsolete, use IApplicationEventHandler or ApplicationEventHandler instead")] public interface IApplicationStartupHandler { } }