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