6 implementations of EndAcceptChannel
System.ServiceModel (6)
System\ServiceModel\Channels\ChannelListenerBase.cs (1)
137public TChannel EndAcceptChannel(IAsyncResult result)
System\ServiceModel\Channels\HttpChannelListener.cs (1)
914public TChannel EndAcceptChannel(IAsyncResult result)
System\ServiceModel\Channels\MsmqChannelListenerBase.cs (1)
284public abstract TChannel EndAcceptChannel(IAsyncResult result);
System\ServiceModel\Channels\NamedPipeChannelListener.cs (1)
88public TChannel EndAcceptChannel(IAsyncResult result)
System\ServiceModel\Channels\PeerChannelListener.cs (1)
312public TChannel EndAcceptChannel(IAsyncResult result)
System\ServiceModel\Channels\TcpChannelListener.cs (1)
95public TChannel EndAcceptChannel(IAsyncResult result)
18 references to EndAcceptChannel
System.ServiceModel (18)
System\ServiceModel\Channels\ChannelDemuxer.cs (2)
911this.channelDemuxer.innerChannel = this.channelDemuxer.innerListener.EndAcceptChannel(result); 1767channel = this.innerListener.EndAcceptChannel(result);
System\ServiceModel\Channels\ContextChannelListener.cs (1)
52return this.InternalAcceptChannel(((IChannelListener<TChannel>)this.InnerChannelListener).EndAcceptChannel(result));
System\ServiceModel\Channels\DatagramAdapter.cs (1)
174channel = this.listener.EndAcceptChannel(result);
System\ServiceModel\Channels\LayeredChannelListener.cs (1)
328TInnerChannel innerChannel = this.innerListener.EndAcceptChannel(result);
System\ServiceModel\Channels\OneWayChannelListener.cs (3)
50IReplyChannel innerChannel = this.innerChannelListener.EndAcceptChannel(result); 523IDuplexChannel channel = this.innerChannelListener.EndAcceptChannel(result); 805channel = innerChannelListener.EndAcceptChannel(result);
System\ServiceModel\Channels\ReliableChannelListener.cs (2)
696channel = this.typedListener.EndAcceptChannel(result); 873channel = this.typedListener.EndAcceptChannel(result);
System\ServiceModel\Channels\ReplyAdapterChannelListener.cs (1)
46TInnerChannel innerChannel = this.innerChannelListener.EndAcceptChannel(result);
System\ServiceModel\Channels\ServerReliableChannelBinder.cs (1)
169TChannel channel = this.listener.EndAcceptChannel(result);
System\ServiceModel\Dispatcher\ListenerBinder.cs (6)
83IDuplexChannel channel = this.listener.EndAcceptChannel(result); 130IDuplexSessionChannel channel = this.listener.EndAcceptChannel(result); 175IInputChannel channel = this.listener.EndAcceptChannel(result); 220IInputSessionChannel channel = this.listener.EndAcceptChannel(result); 265IReplyChannel channel = this.listener.EndAcceptChannel(result); 310IReplySessionChannel channel = this.listener.EndAcceptChannel(result);