public InterceptingRequestChannel(
     InterceptingChannelFactory <TChannel> factory, IRequestChannel innerChannel)
     : base(factory, factory.Interceptor, innerChannel)
 {
     // empty
 }
 public InterceptingRequestSessionChannel(
     InterceptingChannelFactory <TChannel> factory, IRequestSessionChannel innerChannel)
     : base(factory, innerChannel)
 {
     _innerSessionChannel = innerChannel;
 }
Example #3
0
 public InterceptingOutputSessionChannel(
     InterceptingChannelFactory <TChannel> factory, IOutputSessionChannel innerChannel)
     : base(factory, innerChannel)
 {
     this.innerSessionChannel = innerChannel;
 }