Пример #1
0
 public static void RemoveOneShotEventHandler <T>(this EventDispatcherProxy proxy, short type, EventHandler <T> handler)
 {
     proxy.Dispatcher.RemoveOneShotEventHandler <T> (type, handler);
 }
Пример #2
0
 public static void AddOneShotEventHandler(this EventDispatcherProxy proxy, short type, EventHandler handler)
 {
     proxy.Dispatcher.AddOneShotEventHandler(type, handler);
 }
Пример #3
0
 public static void RemoveEventHandler(this EventDispatcherProxy proxy, short type, EventHandler handler)
 {
     proxy.Dispatcher.RemoveEventHandler(type, handler);
 }
Пример #4
0
 public static void AddEventHandler <T>(this EventDispatcherProxy proxy, short type, EventHandler <T> handler)
 {
     proxy.Dispatcher.AddEventHandler <T> (type, handler);
 }
Пример #5
0
 public static void SendEvent <T>(this EventDispatcherProxy proxy, short type, T msg)
 {
     proxy.Dispatcher.SendEvent <T> (type, msg);
 }
Пример #6
0
 public static void SendEvent(this EventDispatcherProxy proxy, short type)
 {
     proxy.Dispatcher.SendEvent(type);
 }