5 implementations of SendTimeout
System.ServiceModel (5)
System\ServiceModel\Channels\Binding.cs (1)
154public TimeSpan SendTimeout
System\ServiceModel\Channels\ChannelBase.cs (1)
45TimeSpan IDefaultCommunicationTimeouts.SendTimeout
System\ServiceModel\Channels\ChannelManagerBase.cs (1)
48TimeSpan IDefaultCommunicationTimeouts.SendTimeout
System\ServiceModel\Channels\ServiceChannelFactory.cs (1)
685public TimeSpan SendTimeout
System\ServiceModel\Dispatcher\ImmutableCommunicationTimeouts.cs (1)
54TimeSpan IDefaultCommunicationTimeouts.SendTimeout
14 references to SendTimeout
System.ServiceModel (14)
System\ServiceModel\Channels\Binding.cs (1)
339this.SendTimeout = source.SendTimeout;
System\ServiceModel\Channels\ChannelBase.cs (1)
67get { return ((IDefaultCommunicationTimeouts)this.channelManager).SendTimeout; }
System\ServiceModel\Channels\ChannelFactoryBase.cs (1)
82this.sendTimeout = timeouts.SendTimeout;
System\ServiceModel\Channels\ChannelListenerBase.cs (1)
35this.sendTimeout = timeouts.SendTimeout;
System\ServiceModel\Channels\Connection.cs (1)
266this.WriteTimeout = TimeoutHelper.ToMilliseconds(defaultTimeouts.SendTimeout);
System\ServiceModel\Channels\DatagramAdapter.cs (1)
955this.defaultSendTimeout = timeouts.SendTimeout;
System\ServiceModel\Channels\ReplyAdapterChannelListener.cs (2)
250this.Reply(message, this.defaultTimeouts.SendTimeout); 261return BeginReply(message, this.defaultTimeouts.SendTimeout, callback, state);
System\ServiceModel\Channels\ServiceChannel.cs (1)
82this.operationTimeout = timeouts.SendTimeout;
System\ServiceModel\Channels\ServiceChannelFactory.cs (2)
76get { return this.timeouts.SendTimeout; } 667this.sendTimeout = timeouts.SendTimeout;
System\ServiceModel\Channels\SingletonConnectionReader.cs (1)
1319: base(requestMessage, parent.transportSettings.CloseTimeout, parent.transportSettings.SendTimeout)
System\ServiceModel\Dispatcher\ImmutableCommunicationTimeouts.cs (1)
35this.send = timeouts.SendTimeout;
System\ServiceModel\Dispatcher\ListenerHandler.cs (1)
573duplexChannelBinder.DefaultSendTimeout = timeouts.SendTimeout;