コード例 #1
0
ファイル: ChannelVisitor.cs プロジェクト: jgsteeler/Magnum
        protected virtual Channel <T> Visitor <T>(InterceptorChannel <T> channel)
        {
            Visit(channel.Output);

            Visit(channel.InterceptorFactory);

            return(channel);
        }
コード例 #2
0
        protected override Channel <T> Visitor <T>(InterceptorChannel <T> channel)
        {
            Trace.WriteLine("InterceptorChannel<{0}>".FormatWith(typeof(T).Name));

            return(base.Visitor(channel));
        }