2 types derived from TransportManager
System.ServiceModel (2)
System\ServiceModel\Channels\ConnectionOrientedTransportManager.cs (1)
13
abstract class ConnectionOrientedTransportManager<TChannelListener> :
TransportManager
System\ServiceModel\Channels\HttpTransportManager.cs (1)
13
abstract class HttpTransportManager :
TransportManager
, ITransportManagerRegistration
33 references to TransportManager
System.ServiceModel (33)
System\ServiceModel\Channels\ExclusiveTcpTransportManager.cs (4)
241
ref ExclusiveTcpTransportManager transportManager, IList<
TransportManager
> result)
250
public override IList<
TransportManager
> Select(TransportChannelListener channelListener)
261
IList<
TransportManager
> result = new List<
TransportManager
>();
System\ServiceModel\Channels\HttpTransportManager.cs (3)
212
IList<
TransportManager
> ITransportManagerRegistration.Select(TransportChannelListener channelListener)
214
IList<
TransportManager
> result = null;
217
result = new List<
TransportManager
>();
System\ServiceModel\Channels\MsmqChannelListenerBase.cs (2)
129
internal override IList<
TransportManager
> SelectTransportManagers()
140
IList<
TransportManager
> foundTransportManagers = registration.Select(this);
System\ServiceModel\Channels\NamedPipeTransportManager.cs (3)
129
IList<
TransportManager
> ITransportManagerRegistration.Select(TransportChannelListener channelListener)
133
IList<
TransportManager
> result = null;
136
result = new List<
TransportManager
>();
System\ServiceModel\Channels\PeerChannelListener.cs (1)
237
internal override IList<
TransportManager
> SelectTransportManagers()
System\ServiceModel\Channels\SharedTcpTransportManager.cs (3)
207
IList<
TransportManager
> ITransportManagerRegistration.Select(TransportChannelListener channelListener)
216
IList<
TransportManager
> result = null;
219
result = new List<
TransportManager
>();
System\ServiceModel\Channels\TransportChannelListener.cs (4)
510
internal virtual IList<
TransportManager
> SelectTransportManagers()
512
IList<
TransportManager
> foundTransportManagers = null;
666
IList<
TransportManager
> Select(TransportChannelListener factory);
693
public abstract IList<
TransportManager
> Select(TransportChannelListener factory);
System\ServiceModel\Channels\TransportManager.cs (9)
170
delegate IList<
TransportManager
> SelectTransportManagersCallback();
173
IList<
TransportManager
> transportManagers;
182
this.transportManagers = new List<
TransportManager
>();
189
this.transportManagers = new List<
TransportManager
>();
238
IList<
TransportManager
> foundTransportManagers = selectTransportManagerCallback();
246
TransportManager
transportManager = foundTransportManagers[i];
275
IList<
TransportManager
> transportManagersCopy;
285
transportManagersCopy = new List<
TransportManager
>(this.transportManagers);
290
foreach (
TransportManager
transportManager in transportManagersCopy)
System\ServiceModel\Channels\UniqueTransportManagerRegistration.cs (4)
13
List<
TransportManager
> list;
15
public UniqueTransportManagerRegistration(
TransportManager
uniqueManager, Uri listenUri, HostNameComparisonMode hostNameComparisonMode)
18
this.list = new List<
TransportManager
>();
22
public override IList<
TransportManager
> Select(TransportChannelListener channelListener)