1 write to _options
Microsoft.Extensions.Hosting (1)
Internal\Host.cs (1)
58
_options
= options?.Value ?? throw new ArgumentNullException(nameof(options));
7 references to _options
Microsoft.Extensions.Hosting (7)
Internal\Host.cs (7)
78
if (
_options
.StartupTimeout != Timeout.InfiniteTimeSpan)
79
cts.CancelAfter(
_options
.StartupTimeout);
91
bool concurrent =
_options
.ServicesStartConcurrently;
198
if (
_options
.BackgroundServiceExceptionBehavior == BackgroundServiceExceptionBehavior.StopHost)
222
if (
_options
.ShutdownTimeout != Timeout.InfiniteTimeSpan)
225
cts.CancelAfter(
_options
.ShutdownTimeout);
246
bool concurrent =
_options
.ServicesStopConcurrently;