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