6 references to ApplicationLifetime
Microsoft.Extensions.Hosting (6)
HostBuilder.cs (1)
310
services.AddSingleton<IHostApplicationLifetime,
ApplicationLifetime
>();
Internal\ApplicationLifetime.cs (3)
24
private readonly ILogger<
ApplicationLifetime
> _logger;
27
/// Initializes an <see cref="
ApplicationLifetime
"/> instance using the specified logger.
30
public ApplicationLifetime(ILogger<
ApplicationLifetime
> logger)
Internal\Host.cs (2)
25
private readonly
ApplicationLifetime
_applicationLifetime;
48
_applicationLifetime = (applicationLifetime as
ApplicationLifetime
)!;