4 instantiations of IpcUnixDomainSocketEndPoint
Microsoft.Diagnostics.NETCore.Client (4)
DiagnosticsIpc\IpcServerTransport.cs (1)
273_endPoint = new IpcUnixDomainSocketEndPoint(path);
DiagnosticsIpc\IpcTransport.cs (2)
76socket.Connect(new IpcUnixDomainSocketEndPoint(config.Address), timeout); 124await socket.ConnectAsync(new IpcUnixDomainSocketEndPoint(config.Address), token).ConfigureAwait(false);
DiagnosticsServerRouter\DiagnosticsServerRouterFactory.cs (1)
684await unixDomainSocket.ConnectAsync(new IpcUnixDomainSocketEndPoint(_ipcClientPath), token).ConfigureAwait(false);
3 references to IpcUnixDomainSocketEndPoint
Microsoft.Diagnostics.NETCore.Client (3)
DiagnosticsIpc\IpcServerTransport.cs (1)
267private readonly IpcUnixDomainSocketEndPoint _endPoint;
DiagnosticsIpc\IpcUnixDomainSocket.cs (1)
21public void Bind(IpcUnixDomainSocketEndPoint localEP)
DiagnosticsIpc\IpcUnixDomainSocketEndPoint.cs (1)
21public static implicit operator EndPoint(IpcUnixDomainSocketEndPoint endPoint) => endPoint.EndPoint;