Base:
7 references to ToString
Aspire.Dashboard (1)
DashboardWebApplication.cs (1)
861return BindingAddress.Scheme.ToLowerInvariant() + Uri.SchemeDelimiter + EndPoint.ToString();
Microsoft.AspNetCore.Http.Abstractions (2)
ConnectionInfo.cs (2)
65var remoteEndpoint = RemoteIpAddress == null ? "(null)" : new IPEndPoint(RemoteIpAddress, RemotePort).ToString(); 66var localEndpoint = LocalIpAddress == null ? "(null)" : new IPEndPoint(LocalIpAddress, LocalPort).ToString();
Microsoft.AspNetCore.HttpOverrides (1)
ForwardedHeadersMiddleware.cs (1)
310requestHeaders[_options.OriginalForHeaderName] = new IPEndPoint(connection.RemoteIpAddress, connection.RemotePort).ToString();
Microsoft.AspNetCore.HttpOverrides.Tests (1)
ForwardedHeadersMiddlewareTest.cs (1)
182Assert.Equal(new IPEndPoint(IPAddress.Parse(originalIp), 99).ToString(),
Microsoft.Gen.Logging.Generated.Tests (1)
LogPropertiesTests.cs (1)
133Assert.Equal(props.P8.ToString(), state!.GetValue("p.P8"));
System.Net.HttpListener (1)
System\Net\HttpListenerRequest.cs (1)
207public string UserHostAddress => LocalEndPoint!.ToString();