2 implementations of ICommunicationEndPoint
Microsoft.TestPlatform.CommunicationUtilities (2)
SocketClient.cs (1)
21public class SocketClient : ICommunicationEndPoint
SocketServer.cs (1)
21public class SocketServer : ICommunicationEndPoint
10 references to ICommunicationEndPoint
Microsoft.TestPlatform.CommunicationUtilities (9)
CommunicationEndpointFactory.cs (2)
15public ICommunicationEndPoint Create(ConnectionRole role) 17ICommunicationEndPoint endPoint = role == ConnectionRole.Host ? new SocketServer() : new SocketClient();
Interfaces\ICommunicationEndpointFactory.cs (2)
14/// <returns cref="ICommunicationEndPoint">Return communication endpoint object.</returns> 15ICommunicationEndPoint Create(ConnectionRole role);
TestRequestSender.cs (5)
36private readonly ICommunicationEndPoint _communicationEndpoint; 72ICommunicationEndPoint? communicationEndPoint, 93?? TestServiceLocator.Get<ICommunicationEndPoint>(testhostConnectionInfo.Endpoint) 115ICommunicationEndPoint communicationEndPoint, 810private static ICommunicationEndPoint SetCommunicationEndPoint(TestHostConnectionInfo testhostConnectionInfo)
Microsoft.TestPlatform.CrossPlatEngine (1)
EventHandlers\TestRequestHandler.cs (1)
47private ICommunicationEndPoint? _communicationEndPoint;