public static void RemoveOneShotEventHandler <T>(this EventDispatcherProxy proxy, short type, EventHandler <T> handler) { proxy.Dispatcher.RemoveOneShotEventHandler <T> (type, handler); }
public static void AddOneShotEventHandler(this EventDispatcherProxy proxy, short type, EventHandler handler) { proxy.Dispatcher.AddOneShotEventHandler(type, handler); }
public static void RemoveEventHandler(this EventDispatcherProxy proxy, short type, EventHandler handler) { proxy.Dispatcher.RemoveEventHandler(type, handler); }
public static void AddEventHandler <T>(this EventDispatcherProxy proxy, short type, EventHandler <T> handler) { proxy.Dispatcher.AddEventHandler <T> (type, handler); }
public static void SendEvent <T>(this EventDispatcherProxy proxy, short type, T msg) { proxy.Dispatcher.SendEvent <T> (type, msg); }
public static void SendEvent(this EventDispatcherProxy proxy, short type) { proxy.Dispatcher.SendEvent(type); }