Exemplo n.º 1
0
 public static bool GetShouldThrowWhenException(this ISignalREvent @event, ISignalREventHandler handler, bool defaultValue)
 {
     return(@event.GetAs(handler, ShouldThrowWhenException, defaultValue));
 }
Exemplo n.º 2
0
 public static bool GetStopSend(this ISignalREvent @event, ISignalREventHandler handler, bool defaultValue)
 {
     return(@event.GetAs(handler, ShouldStopSend, defaultValue));
 }
Exemplo n.º 3
0
 public static bool GetShouldWaitComplete(this ISignalREvent @event, ISignalREventHandler handler, bool defaultValue)
 {
     return(@event.GetAs(handler, ShouldWaitComplete, defaultValue));
 }