8 implementations of BeginRequest
System.ServiceModel (7)
System\ServiceModel\Channels\DatagramAdapter.cs (1)
1437public IAsyncResult BeginRequest(Message message, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\RequestChannel.cs (1)
217public IAsyncResult BeginRequest(Message message, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\SecurityChannelFactory.cs (1)
607public IAsyncResult BeginRequest(Message message, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\ServiceChannel.cs (1)
1316public IAsyncResult BeginRequest(Message message, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\TransactionChannelFactory.cs (1)
303public IAsyncResult BeginRequest(Message message, TimeSpan timeout, AsyncCallback asyncCallback, object state)
System\ServiceModel\ClientBase.cs (1)
1413IAsyncResult IRequestChannel.BeginRequest(Message message, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Security\SecuritySessionClientSettings.cs (1)
2949public IAsyncResult BeginRequest(Message message, TimeSpan timeout, AsyncCallback callback, object state)
System.ServiceModel.Discovery (1)
System\ServiceModel\Discovery\DiscoveryClientRequestChannel.cs (1)
49public IAsyncResult BeginRequest(Message message, TimeSpan timeout, AsyncCallback callback, object state)
8 references to BeginRequest
System.ServiceModel (7)
System\ServiceModel\Channels\ClientReliableChannelBinder.cs (2)
579return channel.BeginRequest(message, timeout, callback, state); 585return channel.BeginRequest(message, timeout, callback, state);
System\ServiceModel\Channels\OneWayChannelFactory.cs (1)
190return this.innerChannel.BeginRequest(message, timeout, callback, state);
System\ServiceModel\Channels\SecurityChannelFactory.cs (1)
879return channel.BeginRequest(message, timeout, callback, state);
System\ServiceModel\ClientBase.cs (1)
1415return ((IRequestChannel)this.channel).BeginRequest(message, timeout, callback, state);
System\ServiceModel\Dispatcher\RequestChannelBinder.cs (2)
78return this.channel.BeginRequest(message, timeout, callback, state); 93return this.channel.BeginRequest(message, timeout, callback, state);
System.ServiceModel.Discovery (1)
System\ServiceModel\Discovery\DiscoveryClientRequestChannel.cs (1)
51return this.InnerChannel.BeginRequest(message, timeout, callback, state);