2017-07-20 11:21:28 +02:00
|
|
|
|
namespace Umbraco.Core
|
2016-09-01 19:06:08 +02:00
|
|
|
|
{
|
2019-01-10 14:03:25 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Describes the levels in which the runtime can run.
|
|
|
|
|
|
/// </summary>
|
2016-09-01 19:06:08 +02:00
|
|
|
|
public enum RuntimeLevel
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// The runtime has failed to boot and cannot run.
|
|
|
|
|
|
/// </summary>
|
2016-09-11 19:57:33 +02:00
|
|
|
|
BootFailed = -1,
|
2016-09-01 19:06:08 +02:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// The level is unknown.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
Unknown = 0,
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// The runtime is booting.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
Boot = 1,
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// The runtime has detected that Umbraco is not installed at all, ie there is
|
|
|
|
|
|
/// no database, and is currently installing Umbraco.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
Install = 2,
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// The runtime has detected an Umbraco install which needed to be upgraded, and
|
|
|
|
|
|
/// is currently upgrading Umbraco.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
Upgrade = 3,
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// The runtime has detected an up-to-date Umbraco install and is running.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
Run = 4
|
|
|
|
|
|
}
|
2017-07-20 11:21:28 +02:00
|
|
|
|
}
|