4 implementations of BeginRequest
dotnet-svcutil-lib (4)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\RequestChannel.cs (1)
218public IAsyncResult BeginRequest(Message message, AsyncCallback callback, object state)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannel.cs (1)
1224public IAsyncResult BeginRequest(Message message, AsyncCallback callback, object state)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
765IAsyncResult IRequestChannel.BeginRequest(Message message, AsyncCallback callback, object state)
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (1)
816IAsyncResult IRequestChannel.BeginRequest(Message message, AsyncCallback callback, object state)
1 reference to BeginRequest
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (1)
818return ((IRequestChannel)_channel).BeginRequest(message, callback, state);