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