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