2 implementations of WaitForChannel
System.ServiceModel (1)
System\ServiceModel\Channels\ChannelListenerBase.cs (1)
72public bool WaitForChannel(TimeSpan timeout)
System.ServiceModel.Discovery (1)
System\ServiceModel\Discovery\OfflineAnnouncementChannelDispatcher.cs (1)
206public bool WaitForChannel(TimeSpan timeout)
6 references to WaitForChannel
System.ServiceModel (6)
System\ServiceModel\Channels\ContextChannelListener.cs (1)
62return this.InnerChannelListener.WaitForChannel(timeout);
System\ServiceModel\Channels\LayeredChannelListener.cs (1)
337return this.innerListener.WaitForChannel(timeout);
System\ServiceModel\Channels\OneWayChannelListener.cs (2)
56return this.innerChannelListener.WaitForChannel(timeout); 534return this.innerChannelListener.WaitForChannel(timeout);
System\ServiceModel\Channels\ReplyAdapterChannelListener.cs (1)
52return this.innerChannelListener.WaitForChannel(timeout);
System\ServiceModel\Dispatcher\ErrorHandlingAcceptor.cs (1)
200this.binder.Listener.WaitForChannel(TimeSpan.MaxValue);