4 implementations of BeginRequest
dotnet-svcutil-lib (4)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\RequestChannel.cs (1)
223
public IAsyncResult
BeginRequest
(Message message, TimeSpan timeout, AsyncCallback callback, object state)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannel.cs (1)
1229
public IAsyncResult
BeginRequest
(Message message, TimeSpan timeout, AsyncCallback callback, object state)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
770
IAsyncResult IRequestChannel.
BeginRequest
(Message message, TimeSpan timeout, AsyncCallback callback, object state)
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (1)
821
IAsyncResult IRequestChannel.
BeginRequest
(Message message, TimeSpan timeout, AsyncCallback callback, object state)
3 references to BeginRequest
dotnet-svcutil-lib (3)
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (1)
823
return ((IRequestChannel)_channel).
BeginRequest
(message, timeout, callback, state);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\RequestChannelBinder.cs (2)
76
return _channel.
BeginRequest
(message, timeout, callback, state);
91
return _channel.
BeginRequest
(message, timeout, callback, state);