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