7 references to LocalEndpoint
Microsoft.AspNetCore.Components.Testing (2)
Infrastructure\ServerFixture.cs (1)
260var port = ((IPEndPoint)listener.LocalEndpoint).Port;
Infrastructure\ServerInstance.cs (1)
233var port = ((IPEndPoint)listener.LocalEndpoint).Port;
Microsoft.AspNetCore.SpaServices.Extensions (1)
Util\TcpPortFinder.cs (1)
17return ((IPEndPoint)listener.LocalEndpoint).Port;
Microsoft.Extensions.Diagnostics.Probes.Tests (1)
TcpEndpointProbesServiceTests.cs (1)
126int port = ((IPEndPoint)listener.LocalEndpoint).Port;
Microsoft.TestPlatform.CommunicationUtilities (3)
SocketCommunicationManager.cs (2)
103EqtTrace.Info("Listening on Endpoint : {0}", (IPEndPoint)_tcpListener.LocalEndpoint); 105return (IPEndPoint)_tcpListener.LocalEndpoint;
SocketServer.cs (1)
67_endPoint = _tcpListener.LocalEndpoint.ToString();