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