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