Example #1
0
 public InputChannel(ChannelManagerBase channelManager, EndpointAddress localAddress)
     : base(channelManager)
 {
     this.localAddress = localAddress;
 }
 public SingletonChannelAcceptor(ChannelManagerBase channelManager)
     : base(channelManager)
 {
 }
Example #3
0
 protected ChannelAcceptor(ChannelManagerBase channelManager)
 {
     this.channelManager = channelManager;
 }
Example #4
0
 FramingDuplexSessionChannel(ChannelManagerBase manager, IConnectionOrientedTransportFactorySettings settings,
                             EndpointAddress localAddress, Uri localVia, EndpointAddress remoteAddresss, Uri via, bool exposeConnectionProperty)
     : base(manager, settings, localAddress, localVia, remoteAddresss, via)
 {
     this.exposeConnectionProperty = exposeConnectionProperty;
 }