Example #1
0
 public Enumeration After(AfterMethodAction after)
 {
     foreach (var method in methods)
     {
         method.After(after);
     }
     return(this);
 }
Example #2
0
 public MethodEnumeration After(AfterMethodAction after)
 {
     foreach (Amendment.Method method in this)
     {
         method.AfterMethod = after.Method;
     }
     return(this);
 }
Example #3
0
 public Context <TContext> After(AfterMethodAction after)
 {
     method.AfterMethod = after.Method;
     return(this);
 }