示例#1
0
        private PipelineTracer TraceFilters()
        {
            var pipelineTracer = new PipelineTracer();

            _pipeline.DescribePath(pipelineTracer);
            return(pipelineTracer);
        }
        private static PipelineTracer TracePipeline()
        {
            var pipelineTracer = new PipelineTracer();

            s_pipeline.DescribePath(pipelineTracer);
            return(pipelineTracer);
        }
示例#3
0
        private PipelineTracer TracePipeline(IHandleRequests <MyCommand> firstInPipeline)
        {
            var pipelineTracer = new PipelineTracer();

            firstInPipeline.DescribePath(pipelineTracer);
            return(pipelineTracer);
        }
        private static ChainPathExplorer GetChain()
        {
            var chainpathExplorer = new ChainPathExplorer();

            chainOfResponsibility.DescribePath(chainpathExplorer);
            return(chainpathExplorer);
        }
        static PipelineTracer TracePipeline(IHandleRequests <TRequest> firstInPipeline)
        {
            var pipelineTracer = new PipelineTracer();

            firstInPipeline.DescribePath(pipelineTracer);
            return(pipelineTracer);
        }
示例#6
0
 /// <summary>
 /// Describes the path.
 /// </summary>
 /// <param name="pathExplorer">The path explorer.</param>
 public void DescribePath(IAmAPipelineTracer pathExplorer)
 {
     pathExplorer.AddToPath(Name);
     if (_successor != null)
     {
         _successor.DescribePath(pathExplorer);
     }
 }
示例#7
0
 public void DescribePath(IChainPathExplorer pathExplorer)
 {
     pathExplorer.AddToPath(Name());
     if (_successor != null)
     {
         _successor.DescribePath(pathExplorer);
     }
 }
示例#8
0
 /// <summary>
 /// Describes the path.
 /// </summary>
 /// <param name="pathExplorer">The path explorer.</param>
 public void DescribePath(IAmAPipelineTracer pathExplorer)
 {
     pathExplorer.AddToPath(Name);
     _successor?.DescribePath(pathExplorer);
 }