Interface IAppEvents
This interface defines methods that need to be called at various points during the application lifecycle. All modules that need to have any housekeeping applied during these events, need to create a concrete class that extends this interface. The main application start event will enumerate these (through reflection) and call the related methods in these classes.
Namespace: Dnn.PersonaBar.Library.AppEvents
Assembly: Dnn.PersonaBar.Library.dll
Syntax
public interface IAppEvents
Methods
| Improve this Doc View SourceApplicationBegin()
Method called after the application starts to perform any required startup actions by the implemetor.
Declaration
void ApplicationBegin()
Remarks
This method must not used multi-threading and must perform it's task as fast as possible.
ApplicationEnd()
Method called before the application stops to perform any required shutdown actions by the implemetor.
Declaration
void ApplicationEnd()
Remarks
This method must not used multi-threading and must perform it's task as fast as possible.