1 write to _tcpClientAddress
Microsoft.Diagnostics.NETCore.Client (1)
DiagnosticsServerRouter\DiagnosticsServerRouterFactory.cs (1)
428
_tcpClientAddress
= IpcTcpSocketEndPoint.NormalizeTcpIpEndPoint(string.IsNullOrEmpty(tcpClient) ? "127.0.0.1:" + string.Format("{0}", 56000 + (Process.GetCurrentProcess().Id % 1000)) : tcpClient);
5 references to _tcpClientAddress
Microsoft.Diagnostics.NETCore.Client (5)
DiagnosticsServerRouter\DiagnosticsServerRouterFactory.cs (5)
422
get { return
_tcpClientAddress
; }
456
_logger?.LogDebug($"Connecting new tcp endpoint \"{
_tcpClientAddress
}\".");
458
IpcTcpSocketEndPoint clientTcpEndPoint = new(
_tcpClientAddress
);
495
_logger?.LogTrace($"Failed connecting {
_tcpClientAddress
}.");
499
_logger?.LogTrace($"Failed connecting {
_tcpClientAddress
}, wait {TcpClientRetryTimeoutMs} ms before retrying.");