Пример #1
0
 public static bool Broadcast(this IHasDispatcher self, object key) => self.Dispatcher.Broadcast(key);
Пример #2
0
 public static bool Message(this IHasDispatcher self, object key) => self.Dispatcher.Message(key);
Пример #3
0
 public static bool Message <T>(this IHasDispatcher self, object key, T prm) => self.Dispatcher.Message(key, prm);
Пример #4
0
 public static bool Broadcast <T>(this IHasDispatcher self, object key, T prm) => self.Dispatcher.Broadcast(key, prm);