54 references to TransportType
SMSvcHost (54)
System\ServiceModel\Activation\ActivatedMessageQueue.cs (2)
72(TransportType == TransportType.Tcp && !SMSvcHost.IsTcpActivationPaused 73|| TransportType == TransportType.NamedPipe && !SMSvcHost.IsNamedPipeActivationPaused) &&
System\ServiceModel\Activation\DupHandleConnectionReader.cs (4)
23TransportType transportType; 27Action connectionDequeuedCallback, TransportType transportType, 45if (transportType == TransportType.Tcp) 49else if (transportType == TransportType.NamedPipe)
System\ServiceModel\Activation\ListenerConfig.cs (3)
123public static List<SecurityIdentifier> GetAllowAccounts(TransportType transportType) 125if (transportType == TransportType.Tcp) 135else if (transportType == TransportType.NamedPipe)
System\ServiceModel\Activation\ListenerConnectionDemuxer.cs (3)
28TransportType transportType; 32TransportType transportType, 95if (transportType == TransportType.Tcp)
System\ServiceModel\Activation\ListenerSessionConnectionReader.cs (1)
14Action connectionDequeuedCallback, TransportType transportType,
System\ServiceModel\Activation\ListenerSingletonConnectionReader.cs (1)
14Action connectionDequeuedCallback, TransportType transportType,
System\ServiceModel\Activation\MessageQueue.cs (16)
34TransportType transportType; 45transportType = TransportType.Unsupported; 71return TransportType != TransportType.Tcp || 76internal TransportType TransportType 92internal static void CloseAll(TransportType transportType) 377internal static void OnDispatchFailure(TransportType transportType) 379if (transportType == TransportType.Tcp) 383else if (transportType == TransportType.NamedPipe) 417if (transportType == TransportType.NamedPipe) 423transportType = TransportType.Tcp; 427if (transportType == TransportType.Tcp) 433transportType = TransportType.NamedPipe; 582if (this.TransportType == TransportType.Tcp) 594if (this.TransportType == TransportType.Tcp) 606if (this.TransportType == TransportType.Tcp) 618if (this.TransportType == TransportType.Tcp)
System\ServiceModel\Activation\NamedPipeActivation.cs (1)
83: base(TransportType.NamedPipe, ListenerConstants.NamedPipeActivationServiceName, ListenerConstants.NamedPipeSharedMemoryName)
System\ServiceModel\Activation\NamedPipeWorkerProcess.cs (2)
63protected override TransportType TransportType 67return TransportType.NamedPipe;
System\ServiceModel\Activation\RoutingTable.cs (2)
186if (messageQueue.TransportType == TransportType.Tcp) 208if (messageQueue.TransportType == TransportType.Tcp)
System\ServiceModel\Activation\SharingService.cs (4)
27TransportType transportType; 34protected SharingService(TransportType transportType, string serviceName, string sharedMemoryName) 41static Binding CreateRegisterBinding(TransportType transportType) 119if (transportType == TransportType.Tcp)
System\ServiceModel\Activation\TcpPortSharing.cs (1)
126: base(TransportType.Tcp, ListenerConstants.TcpPortSharingServiceName, ListenerConstants.TcpSharedMemoryName)
System\ServiceModel\Activation\TcpWorkerProcess.cs (2)
71protected override TransportType TransportType 75return TransportType.Tcp;
System\ServiceModel\Activation\TransportListener.cs (10)
31TransportType transportType; 41transportType = TransportType.Tcp; 77transportType = TransportType.NamedPipe; 120if (transportType == TransportType.Tcp) 129else if (transportType == TransportType.NamedPipe) 214static TransportType GetTransportTypeAndAddress(IConnection connection, out IPAddress address, out int port) 219TransportType transportType = TransportType.NamedPipe; 224transportType = TransportType.Tcp; 243TransportType transportType = GetTransportTypeAndAddress(session.Connection, out address, out port);
System\ServiceModel\Activation\WorkerProcess.cs (2)
90protected abstract TransportType TransportType { get; } 111if (this.TransportType == TransportType.NamedPipe)