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