2 implementations of EndWaitForChannel
System.ServiceModel (1)
System\ServiceModel\Channels\ChannelListenerBase.cs (1)
86public bool EndWaitForChannel(IAsyncResult result)
System.ServiceModel.Discovery (1)
System\ServiceModel\Discovery\OfflineAnnouncementChannelDispatcher.cs (1)
190public bool EndWaitForChannel(IAsyncResult result)
6 references to EndWaitForChannel
System.ServiceModel (6)
System\ServiceModel\Channels\ContextChannelListener.cs (1)
57return this.InnerChannelListener.EndWaitForChannel(result);
System\ServiceModel\Channels\LayeredChannelListener.cs (1)
347return this.innerListener.EndWaitForChannel(result);
System\ServiceModel\Channels\OneWayChannelListener.cs (2)
66return this.innerChannelListener.EndWaitForChannel(result); 529return this.innerChannelListener.EndWaitForChannel(result);
System\ServiceModel\Channels\ReplyAdapterChannelListener.cs (1)
62return this.innerChannelListener.EndWaitForChannel(result);
System\ServiceModel\Dispatcher\ErrorHandlingAcceptor.cs (1)
259this.binder.Listener.EndWaitForChannel(result);