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