6 implementations of BeginSend
dotnet-svcutil-lib (6)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\LayeredChannelFactory.cs (1)
260
public IAsyncResult
BeginSend
(Message message, TimeSpan timeout, AsyncCallback callback, object state)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\OutputChannel.cs (1)
29
public IAsyncResult
BeginSend
(Message message, TimeSpan timeout, AsyncCallback callback, object state)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannel.cs (1)
1202
public IAsyncResult
BeginSend
(Message message, TimeSpan timeout, AsyncCallback callback, object state)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
735
IAsyncResult IOutputChannel.
BeginSend
(Message message, TimeSpan timeout, AsyncCallback callback, object state)
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (1)
786
IAsyncResult IOutputChannel.
BeginSend
(Message message, TimeSpan timeout, AsyncCallback callback, object state)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1497
public IAsyncResult
BeginSend
(Message message, TimeSpan timeout, AsyncCallback callback, object state)
7 references to BeginSend
dotnet-svcutil-lib (7)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\LayeredChannelFactory.cs (1)
262
return _innerOutputChannel.
BeginSend
(message, timeout, callback, state);
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (1)
788
return ((IOutputChannel)_channel).
BeginSend
(message, timeout, callback, state);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (4)
350
return _channel.
BeginSend
(message, timeout, callback, state);
378
IAsyncResult result = _channel.
BeginSend
(message, timeout, Fx.ThunkCallback(new AsyncCallback(this.SendCallback)), duplexRequest);
681
IAsyncResult result = context._channel.
BeginSend
(message, timeout, s_onSend, this);
1499
return _innerChannel.
BeginSend
(message, timeout, callback, state);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\OutputChannelBinder.cs (1)
82
return _channel.
BeginSend
(message, timeout, callback, state);