2 implementations of BeginWaitForChannel
System.ServiceModel (1)
System\ServiceModel\Channels\ChannelListenerBase.cs (1)
79public IAsyncResult BeginWaitForChannel(TimeSpan timeout, AsyncCallback callback, object state)
System.ServiceModel.Discovery (1)
System\ServiceModel\Discovery\OfflineAnnouncementChannelDispatcher.cs (1)
185public IAsyncResult BeginWaitForChannel(TimeSpan timeout, AsyncCallback callback, object state)
6 references to BeginWaitForChannel
System.ServiceModel (6)
System\ServiceModel\Channels\ContextChannelListener.cs (1)
47return this.InnerChannelListener.BeginWaitForChannel(timeout, callback, state);
System\ServiceModel\Channels\LayeredChannelListener.cs (1)
342return this.innerListener.BeginWaitForChannel(timeout, callback, state);
System\ServiceModel\Channels\OneWayChannelListener.cs (2)
61return this.innerChannelListener.BeginWaitForChannel(timeout, callback, state); 518return this.innerChannelListener.BeginWaitForChannel(timeout, callback, state);
System\ServiceModel\Channels\ReplyAdapterChannelListener.cs (1)
57return this.innerChannelListener.BeginWaitForChannel(timeout, callback, state);
System\ServiceModel\Dispatcher\ErrorHandlingAcceptor.cs (1)
222return this.binder.Listener.BeginWaitForChannel(TimeSpan.MaxValue, callback, state);