IHostApplicationLifetime Interface

Definition

Allows consumers to be notified of application lifetime events. This interface is not intended to be user-replaceable.

public interface class IHostApplicationLifetime
public interface IHostApplicationLifetime
type IHostApplicationLifetime = interface
Public Interface IHostApplicationLifetime
Derived

Properties

ApplicationStarted

Triggered when the application host has fully started.

ApplicationStopped

Triggered when the application host has completed a graceful shutdown. The application will not exit until all callbacks registered on this token have completed.

ApplicationStopping

Triggered when the application host is starting a graceful shutdown. Shutdown will block until all callbacks registered on this token have completed.

Methods

StopApplication()

Requests termination of the current application.

Applies to