7 implementations of BeginRequest
System.ServiceModel (7)
System\ServiceModel\Dispatcher\BufferedReceiveBinder.cs (1)
149
public IAsyncResult
BeginRequest
(Message message, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
373
public IAsyncResult
BeginRequest
(Message message, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Dispatcher\InputChannelBinder.cs (1)
123
public IAsyncResult
BeginRequest
(Message message, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Dispatcher\MultipleReceiveBinder.cs (1)
212
public IAsyncResult
BeginRequest
(Message message, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Dispatcher\OutputChannelBinder.cs (1)
96
public IAsyncResult
BeginRequest
(Message message, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Dispatcher\ReplyChannelBinder.cs (1)
98
public IAsyncResult
BeginRequest
(Message message, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Dispatcher\RequestChannelBinder.cs (1)
91
public IAsyncResult
BeginRequest
(Message message, TimeSpan timeout, AsyncCallback callback, object state)
3 references to BeginRequest
System.ServiceModel (3)
System\ServiceModel\Channels\ServiceChannel.cs (1)
2051
result = this.Rpc.Channel.binder.
BeginRequest
(this.Rpc.Request, timeout, sendCallback, this);
System\ServiceModel\Dispatcher\BufferedReceiveBinder.cs (1)
151
return this.channelBinder.
BeginRequest
(message, timeout, callback, state);
System\ServiceModel\Dispatcher\MultipleReceiveBinder.cs (1)
214
return this.channelBinder.
BeginRequest
(message, timeout, callback, state);