For developers: SystemManager events
The SystemManager is a helper class that simplifies working within the Sitefinity CMS system. To use the SystemManger you will need to include the Telerik.Sitefinity.Services namespace in your project. The following events are exposed by the SystemManager class:
ApplicationStart
The ApplicationStart event occurs when the Sitefinity CMS application initialized. It is similar to the Bootstrapper.Initialized event and can be used as an alternative. To subscribe for this event use the following code:
In the event handler you can add your own logic
ModelReset
The ModelReset event occurs when Sitefinity CMS updates the model during the runtime. To subscribe for this event use the following code:
In the event handler you can add your own logic.
ShuttingDown
The ShuttingDown event occurs when the Sitefinity CMS system is shutting down. To subscribe for this event use the following code:
In the event handler you can add your own logic.
Shutdown
The Shutdown event occurs when the Sitefinity CMS system is shut down. To subscribe for this event use the following code:
In the event handler you can add your own logic.