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)
78if (_options.StartupTimeout != Timeout.InfiniteTimeSpan) 79cts.CancelAfter(_options.StartupTimeout); 91bool concurrent = _options.ServicesStartConcurrently; 198if (_options.BackgroundServiceExceptionBehavior == BackgroundServiceExceptionBehavior.StopHost) 222if (_options.ShutdownTimeout != Timeout.InfiniteTimeSpan) 225cts.CancelAfter(_options.ShutdownTimeout); 246bool concurrent = _options.ServicesStopConcurrently;