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; 293if (_options.BackgroundServiceExceptionBehavior == BackgroundServiceExceptionBehavior.StopHost) 322if (_options.ShutdownTimeout != Timeout.InfiniteTimeSpan) 325cts.CancelAfter(_options.ShutdownTimeout); 346bool concurrent = _options.ServicesStopConcurrently; 585public HostOptions Options => host._options;