Files
Umbraco-CMS/src/Umbraco.Core/IRuntime.cs
2018-11-22 14:05:51 +00: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();
}
}