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