3 interfaces inheriting from ITransportFactorySettings
System.ServiceModel (3)
System\ServiceModel\Channels\ITransportFactorySettings.cs (2)
36interface IConnectionOrientedTransportFactorySettings : ITransportFactorySettings, IConnectionOrientedConnectionSettings 56interface IHttpTransportFactorySettings : ITransportFactorySettings
System\ServiceModel\Channels\PeerChannelFactory.cs (1)
12interface IPeerFactory : ITransportFactorySettings
2 implementations of ITransportFactorySettings
System.ServiceModel (2)
System\ServiceModel\Channels\TransportChannelFactory.cs (1)
16abstract class TransportChannelFactory<TChannel> : ChannelFactoryBase<TChannel>, ITransportFactorySettings
System\ServiceModel\Channels\TransportChannelListener.cs (1)
20: ChannelListenerBase, ITransportFactorySettings
23 references to ITransportFactorySettings
System.ServiceModel (23)
System\ServiceModel\Channels\PeerDuplexChannel.cs (1)
215return this.peerNode.InnerNode.BeginSend(this, message, this.via, (ITransportFactorySettings)Manager,
System\ServiceModel\Channels\PeerMessageDispatcher.cs (1)
71peerNode.RegisterMessageFilter(this, this.via, filters, (ITransportFactorySettings)this.channelManager,
System\ServiceModel\Channels\PeerNodeImplementation.cs (3)
374ITransportFactorySettings settings, TimeSpan timeout, AsyncCallback callback, object state, SecurityProtocol securityProtocol) 1578ITransportFactorySettings settings, MessageAvailableCallback callback, SecurityProtocol securityProtocol) 1685public ITransportFactorySettings settings;
System\ServiceModel\Channels\PeerOutputChannel.cs (1)
156return this.peerNode.InnerNode.BeginSend(this, message, this.via, (ITransportFactorySettings)Manager, timeoutHelper.RemainingTime(), callback, state, this.securityProtocol);
System\ServiceModel\Channels\SecurityChannelFactory.cs (2)
238ITransportFactorySettings transportSettings = this.GetProperty<ITransportFactorySettings>();
System\ServiceModel\Channels\TransportChannelFactory.cs (5)
126if (typeof(T) == typeof(ITransportFactorySettings)) 188long ITransportFactorySettings.MaxReceivedMessageSize 193BufferManager ITransportFactorySettings.BufferManager 198bool ITransportFactorySettings.ManualAddressing 203MessageEncoderFactory ITransportFactorySettings.MessageEncoderFactory
System\ServiceModel\Channels\TransportChannelListener.cs (5)
296if (typeof(T) == typeof(ITransportFactorySettings)) 627long ITransportFactorySettings.MaxReceivedMessageSize 632BufferManager ITransportFactorySettings.BufferManager 637bool ITransportFactorySettings.ManualAddressing 642MessageEncoderFactory ITransportFactorySettings.MessageEncoderFactory
System\ServiceModel\Channels\TransportDuplexSessionChannel.cs (1)
33ITransportFactorySettings settings,
System\ServiceModel\Channels\WebSocketTransportDuplexSessionChannel.cs (2)
35ITransportFactorySettings transportFactorySettings; 95protected ITransportFactorySettings TransportFactorySettings
System\ServiceModel\Security\SecurityListenerSettingsLifetimeManager.cs (2)
64ITransportFactorySettings transportSettings = this.innerListener.GetProperty<ITransportFactorySettings>();