1 write to _options
Microsoft.Extensions.Hosting (1)
Internal\Host.cs (1)
60_options = options?.Value ?? throw new ArgumentNullException(nameof(options));
8 references to _options
Microsoft.Extensions.Hosting (8)
Internal\Host.cs (8)
80if (_options.StartupTimeout != Timeout.InfiniteTimeSpan) 81cts.CancelAfter(_options.StartupTimeout); 91bool concurrent = _options.ServicesStartConcurrently; 204if (_options.BackgroundServiceExceptionBehavior == BackgroundServiceExceptionBehavior.StopHost) 233if (_options.ShutdownTimeout != Timeout.InfiniteTimeSpan) 236cts.CancelAfter(_options.ShutdownTimeout); 257bool concurrent = _options.ServicesStopConcurrently; 496public HostOptions Options => host._options;