7 references to InternalCollection
Microsoft.AspNetCore.Server.Kestrel.Core (7)
Internal\AddressBindContext.cs (1)
23public ICollection<string> Addresses => ServerAddressesFeature.InternalCollection;
Internal\KestrelServerImpl.cs (3)
299_serverAddresses.InternalCollection.PreventPublicMutation(); 301if (Options.ConfigurationLoader?.ReloadOnChange == true && (!_serverAddresses.PreferHostingUrls || _serverAddresses.InternalCollection.Count == 0)) 372_serverAddresses.InternalCollection.Remove(listenOption.GetDisplayName());
Internal\ServerAddressesFeature.cs (3)
16ICollection<string> IServerAddressesFeature.Addresses => InternalCollection.PublicCollection; 19private string DebuggerToString() => $"Addresses = {InternalCollection.Count}"; 26public string[] Items => _feature.InternalCollection.ToArray();