6 implementations of AcceptChannel
System.ServiceModel (6)
System\ServiceModel\Channels\ChannelListenerBase.cs (1)
118public TChannel AcceptChannel(TimeSpan timeout)
System\ServiceModel\Channels\HttpChannelListener.cs (1)
902public TChannel AcceptChannel(TimeSpan timeout)
System\ServiceModel\Channels\MsmqChannelListenerBase.cs (1)
282public abstract TChannel AcceptChannel(TimeSpan timeout);
System\ServiceModel\Channels\NamedPipeChannelListener.cs (1)
76public TChannel AcceptChannel(TimeSpan timeout)
System\ServiceModel\Channels\PeerChannelListener.cs (1)
300public TChannel AcceptChannel(TimeSpan timeout)
System\ServiceModel\Channels\TcpChannelListener.cs (1)
83public TChannel AcceptChannel(TimeSpan timeout)
11 references to AcceptChannel
System.ServiceModel (11)
System\ServiceModel\Channels\ContextChannelListener.cs (1)
37return this.InternalAcceptChannel(((IChannelListener<TChannel>)this.InnerChannelListener).AcceptChannel(timeout));
System\ServiceModel\Channels\LayeredChannelListener.cs (1)
314TInnerChannel innerChannel = this.innerListener.AcceptChannel(timeout);
System\ServiceModel\Channels\OneWayChannelListener.cs (2)
39IReplyChannel innerChannel = this.innerChannelListener.AcceptChannel(timeout); 507IDuplexChannel channel = this.innerChannelListener.AcceptChannel(timeout);
System\ServiceModel\Channels\ReplyAdapterChannelListener.cs (1)
34TInnerChannel innerChannel = this.innerChannelListener.AcceptChannel(timeout);
System\ServiceModel\Dispatcher\ListenerBinder.cs (6)
69IDuplexChannel channel = this.listener.AcceptChannel(timeout); 116IDuplexSessionChannel channel = this.listener.AcceptChannel(timeout); 161IInputChannel channel = this.listener.AcceptChannel(timeout); 206IInputSessionChannel channel = this.listener.AcceptChannel(timeout); 251IReplyChannel channel = this.listener.AcceptChannel(timeout); 296IReplySessionChannel channel = this.listener.AcceptChannel(timeout);