18 implementations of Send
System.ServiceModel (15)
System\ServiceModel\Channels\ChannelDemuxer.cs (1)
2930public void Send(Message message, TimeSpan timeout)
System\ServiceModel\Channels\DatagramAdapter.cs (1)
1160public void Send(Message message, TimeSpan timeout)
System\ServiceModel\Channels\DuplexChannel.cs (1)
87public void Send(Message message, TimeSpan timeout)
System\ServiceModel\Channels\InternalDuplexChannelListener.cs (1)
242public void Send(Message message, TimeSpan timeout)
System\ServiceModel\Channels\LayeredChannelFactory.cs (1)
251public void Send(Message message, TimeSpan timeout)
System\ServiceModel\Channels\OutputChannel.cs (1)
74public void Send(Message message, TimeSpan timeout)
System\ServiceModel\Channels\SecurityChannelFactory.cs (1)
569public void Send(Message message, TimeSpan timeout)
System\ServiceModel\Channels\SecurityChannelListener.cs (1)
1068public void Send(Message message, TimeSpan timeout)
System\ServiceModel\Channels\ServiceChannel.cs (1)
1278public void Send(Message message, TimeSpan timeout)
System\ServiceModel\Channels\TransactionChannelFactory.cs (1)
264public void Send(Message message, TimeSpan timeout)
System\ServiceModel\Channels\TransactionChannelListener.cs (1)
583public virtual void Send(Message message, TimeSpan timeout)
System\ServiceModel\ClientBase.cs (1)
1368void IOutputChannel.Send(Message message, TimeSpan timeout)
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1551public void Send(Message message, TimeSpan timeout)
System\ServiceModel\Security\SecuritySessionClientSettings.cs (1)
3255public void Send(Message message, TimeSpan timeout)
System\ServiceModel\Security\SecuritySessionServerSettings.cs (1)
3630public void Send(Message message, TimeSpan timeout)
System.ServiceModel.Channels (1)
System\ServiceModel\Channels\UdpDuplexChannel.cs (1)
84public void Send(Message message, TimeSpan timeout)
System.ServiceModel.Discovery (2)
System\ServiceModel\Discovery\DiscoveryClientDuplexChannel.cs (1)
41public override void Send(Message message, TimeSpan timeout)
System\ServiceModel\Discovery\DiscoveryClientOutputChannel.cs (1)
64public virtual void Send(Message message, TimeSpan timeout)
12 references to Send
System.ServiceModel (11)
System\ServiceModel\Channels\ChannelDemuxer.cs (2)
1269this.innerChannel.Send(message, timeout); 2932this.InnerChannel.Send(message, timeout);
System\ServiceModel\Channels\ClientReliableChannelBinder.cs (1)
392channel.Send(message, timeout);
System\ServiceModel\Channels\LayeredChannelFactory.cs (1)
253this.innerOutputChannel.Send(message, timeout);
System\ServiceModel\Channels\OneWayChannelFactory.cs (1)
342this.innerChannel.Send(message, timeout);
System\ServiceModel\Channels\SecurityChannelListener.cs (1)
1116((IDuplexChannel)this.InnerChannel).Send(faultMessage, timeout);
System\ServiceModel\Channels\ServerReliableChannelBinder.cs (1)
745channel.Send(message, timeout);
System\ServiceModel\ClientBase.cs (1)
1370((IOutputChannel)this.channel).Send(message, timeout);
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (2)
370this.channel.Send(message, timeout); 696this.channel.Send(message, timeout);
System\ServiceModel\Dispatcher\OutputChannelBinder.cs (1)
93this.channel.Send(message, timeout);
System.ServiceModel.Discovery (1)
System\ServiceModel\Discovery\DiscoveryClientOutputChannel.cs (1)
66this.InnerChannel.Send(message, timeout);