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