16 references to TransportType
Microsoft.Diagnostics.NETCore.Client (16)
DiagnosticsIpc\IpcEndpointConfig.cs (12)
27private TransportType _transportType; 36public TransportType Transport => _transportType; 43public IpcEndpointConfig(string address, TransportType transportType, PortType portType) 52case TransportType.NamedPipe: 61case TransportType.UnixDomainSocket: 129TransportType transportType = RuntimeInformation.IsOSPlatform(OSPlatform.Windows) ? TransportType.NamedPipe : TransportType.UnixDomainSocket; 168transportType = TransportType.NamedPipe; 173transportType = TransportType.UnixDomainSocket; 189transportType = TransportType.NamedPipe; 193if (transportType == TransportType.NamedPipe)
DiagnosticsIpc\IpcTransport.cs (4)
62if (config.Transport == IpcEndpointConfig.TransportType.NamedPipe) 73else if (config.Transport == IpcEndpointConfig.TransportType.UnixDomainSocket) 104if (config.Transport == IpcEndpointConfig.TransportType.NamedPipe) 121else if (config.Transport == IpcEndpointConfig.TransportType.UnixDomainSocket)