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