3 instantiations of IpcTcpSocketEndPoint
Microsoft.Diagnostics.NETCore.Client (3)
DiagnosticsIpc\IpcServerTransport.cs (1)
237
_endPoint = new
IpcTcpSocketEndPoint
(address);
DiagnosticsServerRouter\DiagnosticsServerRouterFactory.cs (1)
458
IpcTcpSocketEndPoint clientTcpEndPoint =
new
(_tcpClientAddress);
DiagnosticsServerRouter\DiagnosticsServerRouterRunner.cs (1)
50
IpcTcpSocketEndPoint value =
new
(address);
7 references to IpcTcpSocketEndPoint
Microsoft.Diagnostics.NETCore.Client (7)
DiagnosticsIpc\IpcServerTransport.cs (2)
26
else if (kind == ReversedDiagnosticsServer.Kind.Ipc || !
IpcTcpSocketEndPoint
.IsTcpIpEndPoint(address))
232
private readonly
IpcTcpSocketEndPoint
_endPoint;
DiagnosticsIpc\IpcTcpSocketEndPoint.cs (1)
44
public 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);
458
IpcTcpSocketEndPoint
clientTcpEndPoint = new(_tcpClientAddress);
DiagnosticsServerRouter\DiagnosticsServerRouterRunner.cs (1)
50
IpcTcpSocketEndPoint
value = new(address);