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