public InterceptingInputSessionChannel(
     InterceptingChannelListener <TChannel> listener, IInputSessionChannel innerChannel)
     : base(listener, listener.Interceptor, innerChannel)
 {
     this.innerSessionChannel = innerChannel;
 }
 public InterceptingReplySessionChannel(
     InterceptingChannelListener <TChannel> listener, IReplySessionChannel innerChannel)
     : base(listener, innerChannel)
 {
     this.innerSessionChannel = innerChannel;
 }
 public InterceptingReplyChannel(
     InterceptingChannelListener <TChannel> listener, IReplyChannel innerChannel)
     : base(listener, listener.Interceptor, innerChannel)
 {
     // empty
 }