9 implementations of BeginWaitForRequest
System.ServiceModel (8)
System\ServiceModel\Channels\ChannelDemuxer.cs (1)
3444public IAsyncResult BeginWaitForRequest(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\ContextReplyChannel.cs (1)
41public IAsyncResult BeginWaitForRequest(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\ContextReplySessionChannel.cs (1)
46public IAsyncResult BeginWaitForRequest(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\ReplyAdapterChannelListener.cs (1)
182public IAsyncResult BeginWaitForRequest(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\ReplyChannel.cs (1)
233public IAsyncResult BeginWaitForRequest(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\SecurityChannelListener.cs (1)
1370public IAsyncResult BeginWaitForRequest(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\TransactionChannelListener.cs (1)
477public IAsyncResult BeginWaitForRequest(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Security\SecuritySessionServerSettings.cs (1)
3518public IAsyncResult BeginWaitForRequest(TimeSpan timeout, AsyncCallback callback, object state)
System.ServiceModel.Channels (1)
System\ServiceModel\Channels\UdpReplyChannel.cs (1)
134public IAsyncResult BeginWaitForRequest(TimeSpan timeout, AsyncCallback callback, object state)
7 references to BeginWaitForRequest
System.ServiceModel (7)
System\ServiceModel\Channels\ChannelDemuxer.cs (1)
3448return this.InnerChannel.BeginWaitForRequest(timeout, callback, state);
System\ServiceModel\Channels\ContextReplyChannel.cs (1)
43return this.InnerChannel.BeginWaitForRequest(timeout, callback, state);
System\ServiceModel\Channels\ContextReplySessionChannel.cs (1)
48return this.InnerChannel.BeginWaitForRequest(timeout, callback, state);
System\ServiceModel\Channels\OneWayChannelListener.cs (1)
211return InnerChannel.BeginWaitForRequest(timeout, callback, state);
System\ServiceModel\Channels\SecurityChannelListener.cs (1)
1372return this.InnerChannel.BeginWaitForRequest(timeout, callback, state);
System\ServiceModel\Channels\ServerReliableChannelBinder.cs (1)
920return channel.BeginWaitForRequest(timeout, callback, state);
System\ServiceModel\Channels\TransactionChannelListener.cs (1)
479return InnerChannel.BeginWaitForRequest(timeout, callback, state);