10 references to Kind
Microsoft.Diagnostics.NETCore.Client (10)
DiagnosticsIpc\IpcServerTransport.cs (3)
20
public static IpcServerTransport Create(string address, int maxConnections, ReversedDiagnosticsServer.
Kind
kind, IIpcServerTransportCallbackInternal transportCallback = null)
22
if (kind == ReversedDiagnosticsServer.
Kind
.WebSocket)
26
else if (kind == ReversedDiagnosticsServer.
Kind
.Ipc || !IpcTcpSocketEndPoint.IsTcpIpEndPoint(address))
DiagnosticsServerRouter\DiagnosticsServerRouterFactory.cs (3)
305
_tcpServer = new ReversedDiagnosticsServer(_tcpServerAddress, ReversedDiagnosticsServer.
Kind
.Tcp);
363
_webSocketServer = new ReversedDiagnosticsServer(_webSocketURL, ReversedDiagnosticsServer.
Kind
.WebSocket, TimeSpan.FromMilliseconds(750));
563
_ipcServer = IpcServerTransport.Create(_ipcServerPath, IpcServerTransport.MaxAllowedConnections, ReversedDiagnosticsServer.
Kind
.Ipc);
ReversedServer\ReversedDiagnosticsServer.cs (4)
34
private
Kind
_kind =
Kind
.Ipc;
74
public ReversedDiagnosticsServer(string address,
Kind
kind)
100
public ReversedDiagnosticsServer(string address,
Kind
kind, TimeSpan timeout)