5 types derived from SingletonChannelAcceptor
System.ServiceModel (5)
System\ServiceModel\Channels\ChannelDemuxer.cs (1)
1222
class DuplexChannelAcceptor :
SingletonChannelAcceptor
<IDuplexChannel, DuplexChannel, Message>
System\ServiceModel\Channels\InputChannelAcceptor.cs (1)
12
class InputChannelAcceptor :
SingletonChannelAcceptor
<IInputChannel, InputChannel, Message>
System\ServiceModel\Channels\PeerDuplexChannelListener.cs (1)
13
sealed class PeerDuplexChannelAcceptor :
SingletonChannelAcceptor
<IDuplexChannel, PeerDuplexChannel, Message>
System\ServiceModel\Channels\PeerInputChannelListener.cs (1)
12
sealed class PeerInputChannelAcceptor :
SingletonChannelAcceptor
<IInputChannel, PeerInputChannel, Message>
System\ServiceModel\Channels\ReplyChannelAcceptor.cs (1)
12
class ReplyChannelAcceptor :
SingletonChannelAcceptor
<IReplyChannel, ReplyChannel, RequestContext>
6 references to SingletonChannelAcceptor
System.ServiceModel (6)
System\ServiceModel\Channels\ChannelDemuxer.cs (2)
1538
SingletonChannelAcceptor
<TChannel, TQueuedChannel, TQueuedItem> SingletonAcceptor
1540
get { return (
SingletonChannelAcceptor
<TChannel, TQueuedChannel, TQueuedItem>)base.Acceptor; }
System\ServiceModel\Channels\DatagramAdapter.cs (2)
756
SingletonChannelAcceptor
<IInputChannel, InputChannel, Message> acceptor;
845
SingletonChannelAcceptor
<IReplyChannel, ReplyChannel, RequestContext> acceptor;
System\ServiceModel\Channels\PeerMessageDispatcher.cs (2)
18
SingletonChannelAcceptor
<ChannelInterfaceType, TChannel, Message> singletonChannelAcceptor;
21
public PeerMessageQueueAdapter(
SingletonChannelAcceptor
<ChannelInterfaceType, TChannel, Message> singletonChannelAcceptor)