1 write to Url
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\ConfigurationReader.cs (1)
279Url = url;
11 references to Url
Microsoft.AspNetCore.Server.Kestrel.Core (7)
Internal\ConfigurationReader.cs (3)
304Url == other.Url && 312public override int GetHashCode() => HashCode.Combine(Name, Url,
Internal\KestrelServerImpl.cs (3)
354var urlsToStop = endpointsToStop.Select(lo => lo.EndpointConfig!.Url); 382var urlsToStart = endpointsToStart.Select(lo => lo.EndpointConfig!.Url); 398Trace.LogCritical(0, ex, "Unable to bind to '{url}' on config reload.", listenOption.EndpointConfig!.Url);
KestrelConfigurationLoader.cs (1)
363var listenOptions = AddressBinder.ParseAddress(endpoint.Url, out var https);
Microsoft.AspNetCore.Server.Kestrel.Tests (4)
ConfigurationReaderTests.cs (4)
178Assert.Equal("http://*:5001", end1.Url); 186Assert.Equal("https://*:5002", end2.Url); 194Assert.Equal("https://*:5003", end3.Url); 207Assert.Equal("https://*:5004", end4.Url);