Exemplo n.º 1
0
 public static T Until <T, E, H>(this T handler, Func <Event <E>, bool> condition)
     where
 T : HandlerBase <E, H>
     where
 E : EventArgs
 {
     HandlerExtensions.Until <E, H>(handler, condition);
     return(handler);
 }