1 implementation of ICommunicationChannel
Microsoft.TestPlatform.CommunicationUtilities (1)
LengthPrefixCommunicationChannel.cs (1)
19public class LengthPrefixCommunicationChannel : ICommunicationChannel
12 references to ICommunicationChannel
Microsoft.TestPlatform.CommunicationUtilities (11)
Interfaces\Communication\ConnectedEventArgs.cs (2)
26public ConnectedEventArgs(ICommunicationChannel channel) 41public ICommunicationChannel? Channel { get; private set; }
SocketClient.cs (3)
25private readonly Func<Stream, ICommunicationChannel> _channelFactory; 27private ICommunicationChannel? _channel; 36protected SocketClient(Func<Stream, ICommunicationChannel> channelFactory)
SocketServer.cs (4)
25private readonly Func<Stream, ICommunicationChannel> _channelFactory; 28private ICommunicationChannel? _channel; 48protected SocketServer(Func<Stream, ICommunicationChannel> channelFactory) 54Func<Stream, ICommunicationChannel> channelFactory,
TcpClientExtensions.cs (1)
24ICommunicationChannel channel,
TestRequestSender.cs (1)
41private ICommunicationChannel? _channel;
Microsoft.TestPlatform.CrossPlatEngine (1)
EventHandlers\TestRequestHandler.cs (1)
48private ICommunicationChannel? _channel;