Files
Umbraco-CMS/src/umbraco.interfaces/IApplicationStartupHandler.cs
2017-02-28 23:23:58 +01:00

20 lines
642 B
C#

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