2 types derived from InputQueueChannelAcceptor
System.ServiceModel (2)
System\ServiceModel\Channels\SingletonChannelAcceptor.cs (1)
11: InputQueueChannelAcceptor<ChannelInterfaceType>
System\ServiceModel\Security\SecuritySessionServerSettings.cs (1)
1102class SecuritySessionChannelAcceptor<T> : InputQueueChannelAcceptor<T>, IInputQueueChannelAcceptor
6 instantiations of InputQueueChannelAcceptor
System.ServiceModel (6)
System\ServiceModel\Channels\ChannelDemuxer.cs (1)
3470this.Acceptor = new InputQueueChannelAcceptor<TChannel>(this);
System\ServiceModel\Channels\HttpChannelListener.cs (1)
854this.acceptor = new InputQueueChannelAcceptor<TChannel>(this);
System\ServiceModel\Channels\MsmqInputChannelListenerBase.cs (1)
22this.acceptor = new InputQueueChannelAcceptor<IInputChannel>(this);
System\ServiceModel\Channels\NamedPipeChannelListener.cs (1)
150this.duplexAcceptor = new InputQueueChannelAcceptor<IDuplexSessionChannel>(this);
System\ServiceModel\Channels\ReliableChannelListener.cs (1)
557this.inputQueueChannelAcceptor = new InputQueueChannelAcceptor<TChannel>(this);
System\ServiceModel\Channels\TcpChannelListener.cs (1)
157this.duplexAcceptor = new InputQueueChannelAcceptor<IDuplexSessionChannel>(this);
13 references to InputQueueChannelAcceptor
System.ServiceModel (13)
System\ServiceModel\Channels\ChannelDemuxer.cs (2)
3478public InputQueueChannelAcceptor<TChannel> InputQueueAcceptor 3480get { return (InputQueueChannelAcceptor<TChannel>)base.Acceptor; }
System\ServiceModel\Channels\HttpChannelListener.cs (3)
824InputQueueChannelAcceptor<TChannel> acceptor; 861this.acceptor = (InputQueueChannelAcceptor<TChannel>)(object)(new TransportReplyChannelAcceptor(this)); 875public InputQueueChannelAcceptor<TChannel> Acceptor
System\ServiceModel\Channels\MsmqInputChannelListenerBase.cs (1)
9InputQueueChannelAcceptor<IInputChannel> acceptor;
System\ServiceModel\Channels\NamedPipeChannelListener.cs (3)
143: NamedPipeChannelListener<IDuplexSessionChannel, InputQueueChannelAcceptor<IDuplexSessionChannel>>, ISessionPreambleHandler 145InputQueueChannelAcceptor<IDuplexSessionChannel> duplexAcceptor; 153protected override InputQueueChannelAcceptor<IDuplexSessionChannel> ChannelAcceptor
System\ServiceModel\Channels\ReliableChannelListener.cs (1)
549InputQueueChannelAcceptor<TChannel> inputQueueChannelAcceptor;
System\ServiceModel\Channels\TcpChannelListener.cs (3)
150: TcpChannelListener<IDuplexSessionChannel, InputQueueChannelAcceptor<IDuplexSessionChannel>>, ISessionPreambleHandler 152InputQueueChannelAcceptor<IDuplexSessionChannel> duplexAcceptor; 160protected override InputQueueChannelAcceptor<IDuplexSessionChannel> ChannelAcceptor