Table of Contents

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

Action

OnApplicationStoppedCallback

Triggered when the application host has completed a graceful shutdown.

Action OnApplicationStoppedCallback { get; set; }

Property Value

Action

OnApplicationStoppingCallback

Triggered when the application host is starting a graceful shutdown.

Action OnApplicationStoppingCallback { get; set; }

Property Value

Action