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); 89bool concurrent = _options.ServicesStartConcurrently; 197if (_options.BackgroundServiceExceptionBehavior == BackgroundServiceExceptionBehavior.StopHost) 221if (_options.ShutdownTimeout != Timeout.InfiniteTimeSpan) 224cts.CancelAfter(_options.ShutdownTimeout); 245bool concurrent = _options.ServicesStopConcurrently;