7 writes to Endpoint
Microsoft.TestPlatform.CommunicationUtilities (1)
TestRequestSender.cs (1)
99_connectionInfo.Endpoint = testhostConnectionInfo.Endpoint;
Microsoft.TestPlatform.CrossPlatEngine (1)
Client\ProxyOperationManager.cs (1)
208testHostConnectionInfo.Endpoint += portNumber;
Microsoft.TestPlatform.TestHostRuntimeProvider (2)
Hosting\DefaultTestHostManager.cs (1)
163return new TestHostConnectionInfo { Endpoint = "127.0.0.1:0", Role = ConnectionRole.Client, Transport = Transport.Sockets };
Hosting\DotnetTestHostManager.cs (1)
219return new TestHostConnectionInfo { Endpoint = "127.0.0.1:0", Role = ConnectionRole.Client, Transport = Transport.Sockets };
testhost (1)
src\vstest\src\testhost.x86\DefaultEngineInvoker.cs (1)
275Endpoint = endpoint!,
testhost.arm64 (1)
src\vstest\src\testhost.x86\DefaultEngineInvoker.cs (1)
275Endpoint = endpoint!,
testhost.x86 (1)
DefaultEngineInvoker.cs (1)
275Endpoint = endpoint!,
6 references to Endpoint
Microsoft.TestPlatform.CommunicationUtilities (4)
SocketTransport.cs (1)
32var endpoint = GetIpEndPoint(_connectionInfo.Endpoint);
TestRequestSender.cs (3)
93?? TestServiceLocator.Get<ICommunicationEndPoint>(testhostConnectionInfo.Endpoint) 99_connectionInfo.Endpoint = testhostConnectionInfo.Endpoint; 166var endpoint = _communicationEndpoint.Start(_connectionInfo.Endpoint);
Microsoft.TestPlatform.CrossPlatEngine (1)
EventHandlers\TestRequestHandler.cs (1)
139_communicationEndPoint.Start(ConnectionInfo.Endpoint);
Microsoft.VisualStudio.TestPlatform.ObjectModel (1)
ConnectionInfo\TestRunnerConnectionInfoExtensions.cs (1)
20var options = $"--port {connectionInfo.Port} --endpoint {connectionInfo.ConnectionInfo.Endpoint} --role {(connectionInfo.ConnectionInfo.Role == ConnectionRole.Client ? "client" : "host")} --parentprocessid {connectionInfo.RunnerProcessId}";