Exemplo n.º 1
0
 public static T Timeout <T, E, H>(this T handler, TimeSpan period, Action onTimeout)
     where
 T : HandlerBase <E, H>
     where
 E : EventArgs
 {
     HandlerExtensions.Timeout <E, H>(handler, period, onTimeout);
     return(handler);
 }