public void RegisterNext(ISupplierHandler next)
 {
     throw new InvalidOperationException("End of chain handler must be the end of the chain!");
 }
示例#2
0
 public void RegisterNext(ISupplierHandler next)
 {
     _next = next;
 }