8 implementations of BeginReceiveRequest
System.ServiceModel (7)
System\ServiceModel\Channels\ChannelDemuxer.cs (1)
3396public IAsyncResult BeginReceiveRequest(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\ContextReplyChannel.cs (1)
26public IAsyncResult BeginReceiveRequest(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\ContextReplySessionChannel.cs (1)
31public IAsyncResult BeginReceiveRequest(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\ReplyAdapterChannelListener.cs (1)
138public IAsyncResult BeginReceiveRequest(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\ReplyChannel.cs (1)
181public IAsyncResult BeginReceiveRequest(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\SecurityChannelListener.cs (1)
1233public IAsyncResult BeginReceiveRequest(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\TransactionChannelListener.cs (1)
388public IAsyncResult BeginReceiveRequest(TimeSpan timeout, AsyncCallback callback, object state)
System.ServiceModel.Channels (1)
System\ServiceModel\Channels\UdpReplyChannel.cs (1)
80public IAsyncResult BeginReceiveRequest(TimeSpan timeout, AsyncCallback callback, object state)
7 references to BeginReceiveRequest
System.ServiceModel (7)
System\ServiceModel\Channels\ChannelDemuxer.cs (3)
1313return this.InnerChannel.BeginReceiveRequest(timeout, callback, state); 2971return channel.BeginReceiveRequest(timeout, callback, state); 3401return this.InnerChannel.BeginReceiveRequest(timeout, callback, state);
System\ServiceModel\Channels\ContextReplyChannel.cs (1)
28return this.InnerChannel.BeginReceiveRequest(timeout, callback, state);
System\ServiceModel\Channels\ContextReplySessionChannel.cs (1)
33return this.InnerChannel.BeginReceiveRequest(timeout, callback, state);
System\ServiceModel\Channels\DatagramAdapter.cs (1)
859return channel.BeginReceiveRequest(TimeSpan.MaxValue, callback, state);
System\ServiceModel\Channels\OneWayChannelListener.cs (1)
265return InnerChannel.BeginReceiveRequest(timeout, callback, state);