6 implementations of BeginAcceptChannel
System.ServiceModel (6)
System\ServiceModel\Channels\ChannelListenerBase.cs (1)
130public IAsyncResult BeginAcceptChannel(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\HttpChannelListener.cs (1)
908public IAsyncResult BeginAcceptChannel(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\MsmqChannelListenerBase.cs (1)
283public abstract IAsyncResult BeginAcceptChannel(TimeSpan timeout, AsyncCallback callback, object state);
System\ServiceModel\Channels\NamedPipeChannelListener.cs (1)
82public IAsyncResult BeginAcceptChannel(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\PeerChannelListener.cs (1)
306public IAsyncResult BeginAcceptChannel(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\TcpChannelListener.cs (1)
89public IAsyncResult BeginAcceptChannel(TimeSpan timeout, AsyncCallback callback, object state)
16 references to BeginAcceptChannel
System.ServiceModel (16)
System\ServiceModel\Channels\ChannelDemuxer.cs (1)
1711result = this.innerListener.BeginAcceptChannel(TimeSpan.MaxValue, onAcceptComplete, this);
System\ServiceModel\Channels\ContextChannelListener.cs (1)
42return ((IChannelListener<TChannel>)this.InnerChannelListener).BeginAcceptChannel(timeout, callback, state);
System\ServiceModel\Channels\DatagramAdapter.cs (1)
137result = this.listener.BeginAcceptChannel(TimeSpan.MaxValue, acceptCallbackDelegate, this);
System\ServiceModel\Channels\LayeredChannelListener.cs (1)
323return this.innerListener.BeginAcceptChannel(timeout, callback, state);
System\ServiceModel\Channels\OneWayChannelListener.cs (3)
45return this.innerChannelListener.BeginAcceptChannel(timeout, callback, state); 513return this.innerChannelListener.BeginAcceptChannel(timeout, callback, state); 734result = this.innerChannelListener.BeginAcceptChannel(TimeSpan.MaxValue, onAcceptInnerChannel, this);
System\ServiceModel\Channels\ReliableChannelListener.cs (1)
868IAsyncResult result = this.typedListener.BeginAcceptChannel(TimeSpan.MaxValue, onAcceptCompleted, this);
System\ServiceModel\Channels\ReplyAdapterChannelListener.cs (1)
41return this.innerChannelListener.BeginAcceptChannel(timeout, callback, state);
System\ServiceModel\Channels\ServerReliableChannelBinder.cs (1)
494IAsyncResult result = this.listener.BeginAcceptChannel(TimeSpan.MaxValue,
System\ServiceModel\Dispatcher\ListenerBinder.cs (6)
78return this.listener.BeginAcceptChannel(timeout, callback, state); 125return this.listener.BeginAcceptChannel(timeout, callback, state); 170return this.listener.BeginAcceptChannel(timeout, callback, state); 215return this.listener.BeginAcceptChannel(timeout, callback, state); 260return this.listener.BeginAcceptChannel(timeout, callback, state); 305return this.listener.BeginAcceptChannel(timeout, callback, state);