2 implementations of IClientConnectionHost
VBCSCompiler (1)
NamedPipeClientConnectionHost.cs (1)
18internal sealed class NamedPipeClientConnectionHost : IClientConnectionHost
VBCSCompiler.UnitTests (1)
TestableClientConnectionHost.cs (1)
14internal sealed class TestableClientConnectionHost : IClientConnectionHost
8 references to IClientConnectionHost
VBCSCompiler (5)
BuildServerController.cs (3)
89internal static IClientConnectionHost CreateClientConnectionHost(string pipeName, ICompilerServerLogger logger) => new NamedPipeClientConnectionHost(pipeName, logger); 106IClientConnectionHost? clientConnectionHost = null, 141IClientConnectionHost? clientConnectionHost = null,
ServerDispatcher.cs (2)
56private readonly IClientConnectionHost _clientConnectionHost; 66internal ServerDispatcher(ICompilerServerHost compilerServerHost, IClientConnectionHost clientConnectionHost, IDiagnosticListener? diagnosticListener = null)
VBCSCompiler.UnitTests (3)
CompilerServerApiTest.cs (1)
49var host = new Mock<IClientConnectionHost>(MockBehavior.Strict);
ServerUtil.cs (2)
81IClientConnectionHost clientConnectionHost = null, 176IClientConnectionHost clientConnectionHost = null,