Files
Umbraco-CMS/src/Umbraco.Core/IRuntime.cs
2017-07-20 11:21:28 +02:00

22 lines
476 B
C#

using LightInject;
namespace Umbraco.Core
{
/// <summary>
/// Defines the Umbraco runtime.
/// </summary>
public interface IRuntime
{
/// <summary>
/// Boots the runtime.
/// </summary>
/// <param name="container">The application service container.</param>
void Boot(ServiceContainer container);
/// <summary>
/// Terminates the runtime.
/// </summary>
void Terminate();
}
}