Interface IHostLifetimeEvents
- Namespace
- Codebelt.Bootstrapper
- Assembly
- Codebelt.Bootstrapper.dll
Provides a convenient way to be notified of host lifetime events.
public interface IHostLifetimeEvents
Properties
OnApplicationStartedCallback
Triggered when the application host has fully started.
Action OnApplicationStartedCallback { get; set; }
Property Value
OnApplicationStoppedCallback
Triggered when the application host has completed a graceful shutdown.
Action OnApplicationStoppedCallback { get; set; }
Property Value
OnApplicationStoppingCallback
Triggered when the application host is starting a graceful shutdown.
Action OnApplicationStoppingCallback { get; set; }