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