<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="10.0.11" />

Microsoft.Extensions.Hosting.IHostApplicationLifetime

public interface IHostApplicationLifetime
Allows consumers to be notified of application lifetime events. This interface is not intended to be user-replaceable.
namespace Microsoft.Extensions.Hosting { public interface IHostApplicationLifetime { CancellationToken ApplicationStarted { get; } CancellationToken ApplicationStopping { get; } CancellationToken ApplicationStopped { get; } void StopApplication(); } }