3 instantiations of IpcTcpSocketEndPoint
Microsoft.Diagnostics.NETCore.Client (3)
DiagnosticsIpc\IpcServerTransport.cs (1)
237_endPoint = new IpcTcpSocketEndPoint(address);
DiagnosticsServerRouter\DiagnosticsServerRouterFactory.cs (1)
458IpcTcpSocketEndPoint clientTcpEndPoint = new(_tcpClientAddress);
DiagnosticsServerRouter\DiagnosticsServerRouterRunner.cs (1)
50IpcTcpSocketEndPoint value = new(address);
7 references to IpcTcpSocketEndPoint
Microsoft.Diagnostics.NETCore.Client (7)
DiagnosticsIpc\IpcServerTransport.cs (2)
26else if (kind == ReversedDiagnosticsServer.Kind.Ipc || !IpcTcpSocketEndPoint.IsTcpIpEndPoint(address)) 232private readonly IpcTcpSocketEndPoint _endPoint;
DiagnosticsIpc\IpcTcpSocketEndPoint.cs (1)
44public static implicit operator EndPoint(IpcTcpSocketEndPoint endPoint) => endPoint.EndPoint;
DiagnosticsServerRouter\DiagnosticsServerRouterFactory.cs (3)
303_tcpServerAddress = IpcTcpSocketEndPoint.NormalizeTcpIpEndPoint(string.IsNullOrEmpty(tcpServer) ? "127.0.0.1:0" : tcpServer); 428_tcpClientAddress = IpcTcpSocketEndPoint.NormalizeTcpIpEndPoint(string.IsNullOrEmpty(tcpClient) ? "127.0.0.1:" + string.Format("{0}", 56000 + (Process.GetCurrentProcess().Id % 1000)) : tcpClient); 458IpcTcpSocketEndPoint clientTcpEndPoint = new(_tcpClientAddress);
DiagnosticsServerRouter\DiagnosticsServerRouterRunner.cs (1)
50IpcTcpSocketEndPoint value = new(address);