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)
81if (_options.StartupTimeout != Timeout.InfiniteTimeSpan) 82cts.CancelAfter(_options.StartupTimeout); 92bool concurrent = _options.ServicesStartConcurrently; 224if (_options.BackgroundServiceExceptionBehavior == BackgroundServiceExceptionBehavior.StopHost) 253if (_options.ShutdownTimeout != Timeout.InfiniteTimeSpan) 256cts.CancelAfter(_options.ShutdownTimeout); 277bool concurrent = _options.ServicesStopConcurrently; 516public HostOptions Options => host._options;