3 types derived from IpcServerTransport
Microsoft.Diagnostics.NETCore.Client (3)
DiagnosticsIpc\IpcServerTransport.cs (2)
93internal sealed class IpcWindowsNamedPipeServerTransport : IpcServerTransport 164internal abstract class IpcSocketServerTransport : IpcServerTransport
DiagnosticsIpc\IpcWebSocketServerTransport.cs (1)
10internal sealed class IpcWebSocketServerTransport : IpcServerTransport
8 references to IpcServerTransport
Microsoft.Diagnostics.NETCore.Client (8)
DiagnosticsIpc\IpcServerTransport.cs (1)
20public static IpcServerTransport Create(string address, int maxConnections, ReversedDiagnosticsServer.Kind kind, IIpcServerTransportCallbackInternal transportCallback = null)
DiagnosticsServerRouter\DiagnosticsServerRouterFactory.cs (3)
544private IpcServerTransport _ipcServer; 563_ipcServer = IpcServerTransport.Create(_ipcServerPath, IpcServerTransport.MaxAllowedConnections, ReversedDiagnosticsServer.Kind.Ipc);
ReversedServer\ReversedDiagnosticsServer.cs (4)
33private IpcServerTransport _transport; 172_transport = IpcServerTransport.Create(_address, maxConnections, _kind, TransportCallback); 250private async Task AcceptTransportAsync(IpcServerTransport transport, CancellationToken token) 423public static int MaxAllowedConnections = IpcServerTransport.MaxAllowedConnections;