18 implementations of BeginSend
System.ServiceModel (15)
System\ServiceModel\Channels\ChannelDemuxer.cs (1)
2940public IAsyncResult BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\DatagramAdapter.cs (1)
1204public IAsyncResult BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\DuplexChannel.cs (1)
34public IAsyncResult BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\InternalDuplexChannelListener.cs (1)
181public IAsyncResult BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\LayeredChannelFactory.cs (1)
261public IAsyncResult BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\OutputChannel.cs (1)
27public IAsyncResult BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\SecurityChannelFactory.cs (1)
552public IAsyncResult BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\SecurityChannelListener.cs (1)
1051public IAsyncResult BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\ServiceChannel.cs (1)
1289public IAsyncResult BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\TransactionChannelFactory.cs (1)
246public IAsyncResult BeginSend(Message message, TimeSpan timeout, AsyncCallback asyncCallback, object state)
System\ServiceModel\Channels\TransactionChannelListener.cs (1)
566public virtual IAsyncResult BeginSend(Message message, TimeSpan timeout, AsyncCallback asyncCallback, object state)
System\ServiceModel\ClientBase.cs (1)
1378IAsyncResult IOutputChannel.BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1561public IAsyncResult BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Security\SecuritySessionClientSettings.cs (1)
3269public IAsyncResult BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Security\SecuritySessionServerSettings.cs (1)
3643public IAsyncResult BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state)
System.ServiceModel.Channels (1)
System\ServiceModel\Channels\UdpDuplexChannel.cs (1)
55public IAsyncResult BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state)
System.ServiceModel.Discovery (2)
System\ServiceModel\Discovery\DiscoveryClientDuplexChannel.cs (1)
35public override IAsyncResult BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Discovery\DiscoveryClientOutputChannel.cs (1)
49public virtual IAsyncResult BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state)
16 references to BeginSend
System.ServiceModel (15)
System\ServiceModel\Channels\ChannelDemuxer.cs (2)
1274return this.innerChannel.BeginSend(message, timeout, callback, state); 2942return this.InnerChannel.BeginSend(message, timeout, callback, state);
System\ServiceModel\Channels\ClientReliableChannelBinder.cs (1)
358return channel.BeginSend(message, timeout, callback, state);
System\ServiceModel\Channels\LayeredChannelFactory.cs (1)
263return this.innerOutputChannel.BeginSend(message, timeout, callback, state);
System\ServiceModel\Channels\OneWayChannelFactory.cs (1)
311return this.innerChannel.BeginSend(message, timeout, callback, state);
System\ServiceModel\Channels\PeerNeighborManager.cs (1)
1089return this.proxy.BeginSend(message, timeout, callback, asyncState);
System\ServiceModel\Channels\ReplyAdapterChannelListener.cs (1)
267return this.innerChannel.BeginSend(message, timeout, callback, state);
System\ServiceModel\Channels\SecurityChannelListener.cs (1)
1942return this.innerChannel.BeginSend(faultMessage, timeout, callback, state);
System\ServiceModel\Channels\ServerReliableChannelBinder.cs (1)
701return channel.BeginSend(message, timeout, callback, state);
System\ServiceModel\ClientBase.cs (1)
1380return ((IOutputChannel)this.channel).BeginSend(message, timeout, callback, state);
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (3)
360return this.channel.BeginSend(message, timeout, callback, state); 726IAsyncResult result = context.channel.BeginSend(message, timeout, onSend, this); 1563return this.innerChannel.BeginSend(message, timeout, callback, state);
System\ServiceModel\Dispatcher\OutputChannelBinder.cs (1)
83return this.channel.BeginSend(message, timeout, callback, state);
System\ServiceModel\Security\SecurityChannel.cs (1)
142return channel.BeginSend(message, timeout, callback, state);
System.ServiceModel.Discovery (1)
System\ServiceModel\Discovery\DiscoveryClientOutputChannel.cs (1)
51return this.InnerChannel.BeginSend(message, timeout, callback, state);