public ProcessRequestEngine(IHandlerChain handlerChain)
 {
     _handlerChain = handlerChain;
 }
Пример #2
0
 public IHandlerChain Next(IHandlerChain next)
 {
     NextHandler = next;
     return(next);
 }