Exemplo n.º 1
0
 public static void SetShouldThrowWhenException(this ISignalREvent @event, ISignalREventHandler handler, bool shouldThrow)
 {
     @event.Set(handler, ShouldThrowWhenException, shouldThrow);
 }
Exemplo n.º 2
0
 public static void SetStopSend(this ISignalREvent @event, ISignalREventHandler handler, bool shouldStop)
 {
     @event.Set(handler, ShouldStopSend, shouldStop);
 }
Exemplo n.º 3
0
 public static void SetShouldWaitComplete(this ISignalREvent @event, ISignalREventHandler handler, bool shouldWait)
 {
     @event.Set(handler, ShouldWaitComplete, shouldWait);
 }