1 write to _options
Microsoft.Extensions.Hosting (1)
Internal\Host.cs (1)
58_options = options?.Value ?? throw new ArgumentNullException(nameof(options));
8 references to _options
Microsoft.Extensions.Hosting (8)
Internal\Host.cs (8)
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; 456public HostOptions Options => host._options;