Enum RuntimeLevelReason
Describes the reason for the runtime level.
Namespace: Umbraco.Cms.Core
Assembly: Umbraco.Core.dll
Syntax
public enum RuntimeLevelReason
Fields
Name | Description |
---|---|
BootFailedCannotCheckUpgradeState | The runtime can connect to the configured database, but it cannot retrieve the migrations status. |
BootFailedCannotConnectToDatabase | The runtime cannot connect to the configured database. |
BootFailedCannotDowngrade | The code version is lower than the version indicated in web.config, and downgrading Umbraco is not supported. |
BootFailedOnException | An exception was thrown during boot. |
InstallEmptyDatabase | A version is specified in web.config and a database is configured, but the database is empty, and installing over an empty database has been enabled. |
InstallMissingDatabase | A version is specified in web.config and a database is configured, but the database is missing, and installing over a missing database has been enabled. |
InstallNoDatabase | A version is specified in web.config but the database is not configured. |
InstallNoVersion | Umbraco is not installed at all. |
Run | Umbraco is running. |
Unknown | The reason is unknown. |
UpgradeMigrations | Umbraco runs the current version but some migrations have not run. |
UpgradeOldVersion | Umbraco runs an old version. |
UpgradePackageMigrations | Umbraco runs the current version but some package migrations have not run. |