5 implementations of SendTimeout
dotnet-svcutil-lib (5)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\Binding.cs (1)
146public TimeSpan SendTimeout
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ChannelBase.cs (1)
39TimeSpan IDefaultCommunicationTimeouts.SendTimeout
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ChannelManagerBase.cs (1)
41TimeSpan IDefaultCommunicationTimeouts.SendTimeout
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelFactory.cs (1)
652public TimeSpan SendTimeout
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ImmutableCommunicationTimeouts.cs (1)
52TimeSpan IDefaultCommunicationTimeouts.SendTimeout
9 references to SendTimeout
dotnet-svcutil-lib (9)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\Binding.cs (1)
265this.SendTimeout = source.SendTimeout;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ChannelBase.cs (1)
61get { return ((IDefaultCommunicationTimeouts)_channelManager).SendTimeout; }
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ChannelFactoryBase.cs (1)
87_sendTimeout = timeouts.SendTimeout;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\Connection.cs (1)
215this.WriteTimeout = TimeoutHelper.ToMilliseconds(defaultTimeouts.SendTimeout);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannel.cs (1)
74_operationTimeout = timeouts.SendTimeout;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelFactory.cs (2)
74get { return _timeouts.SendTimeout; } 634_sendTimeout = timeouts.SendTimeout;
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ImmutableCommunicationTimeouts.cs (1)
33_send = timeouts.SendTimeout;
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ListenerHandler.cs (1)
304duplexChannelBinder.DefaultSendTimeout = _timeouts.SendTimeout;