Class AppCore
Main entry point to the application.
public static class AppCore
- Inheritance
-
objectAppCore
Properties
Initialized
Gets a value indicating whether the application core has been initialized.
public static bool Initialized { get; }
Property Value
- bool
PreInitialized
Gets a value indicating whether the application core has been pre-initialized.
public static bool PreInitialized { get; }
Property Value
- bool
Methods
Init()
Determines whether the initialization phase of the application core life-cycle is complete. If it is not, it executes it.
public static bool Init()
Returns
- bool
True, if the initialization phase of the application core life-cycle has been executed; otherwise, false.
Remarks
This method is not intended to be used in custom code. Use CMS.DataEngine.CMSApplication.Init() instead.
PreInit()
Determines whether the pre-initialization phase of the application core life-cycle is complete. If it is not, it executes it.
public static bool PreInit()
Returns
- bool
True, the pre-initialization phase of the application core life-cycle has been executed; otherwise, false.
Remarks
This method is not intended to be used in custom code. Use CMS.DataEngine.CMSApplication.PreInit() instead.
A loop in application core pre-initialization is typically caused by some module's pre-initialization code trying to perform actions which require the application core to be already pre-initialized. Module's pre-initialization must never rely on such actions.
Exceptions
- InvalidOperationException
Thrown when a loop occurs in application core pre-initialization.