2 instantiations of PeerDuplexChannel
System.ServiceModel (2)
System\ServiceModel\Channels\PeerChannelFactory.cs (1)
156PeerDuplexChannel duplexChannel = new PeerDuplexChannel(peerNode, registration, this, to, via);
System\ServiceModel\Channels\PeerDuplexChannelListener.cs (1)
61return new PeerDuplexChannel(peerNode, registration, ChannelManager, localAddress, via);
13 references to PeerDuplexChannel
System.ServiceModel (13)
System\ServiceModel\Channels\PeerChannelFactory.cs (5)
156PeerDuplexChannel duplexChannel = new PeerDuplexChannel(peerNode, registration, this, to, via); 157PeerMessageDispatcher<IDuplexChannel, PeerDuplexChannel>.PeerMessageQueueAdapter queueHandler = new PeerMessageDispatcher<IDuplexChannel, PeerDuplexChannel>.PeerMessageQueueAdapter(duplexChannel); 158PeerMessageDispatcher<IDuplexChannel, PeerDuplexChannel> dispatcher = new PeerMessageDispatcher<IDuplexChannel, PeerDuplexChannel>(queueHandler, duplexChannel.InnerNode, this, to, via);
System\ServiceModel\Channels\PeerDuplexChannel.cs (2)
22PeerMessageDispatcher<IDuplexChannel, PeerDuplexChannel> messageDispatcher; 54internal PeerMessageDispatcher<IDuplexChannel, PeerDuplexChannel> Dispatcher
System\ServiceModel\Channels\PeerDuplexChannelListener.cs (6)
13sealed class PeerDuplexChannelAcceptor : SingletonChannelAcceptor<IDuplexChannel, PeerDuplexChannel, Message> 19PeerMessageDispatcher<IDuplexChannel, PeerDuplexChannel> dispatcher = null; 29PeerMessageDispatcher<IDuplexChannel, PeerDuplexChannel>.PeerMessageQueueAdapter queueHandler = new PeerMessageDispatcher<IDuplexChannel, PeerDuplexChannel>.PeerMessageQueueAdapter(this); 30this.dispatcher = new PeerMessageDispatcher<IDuplexChannel, PeerDuplexChannel>(queueHandler, peerNode, ChannelManager, localAddress, via); 59protected override PeerDuplexChannel OnCreateChannel()