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