Exemple #1
0
 public static void RemoveHandler(
     EhHandlerType handlerType)
 {
     handlers[(int)handlerType] = EhSentinel;
 }
Exemple #2
0
 public static void AddHandler(EhHandlerType handlerType,
                               EhEventHandler handler)
 {
     handlers[(int)handlerType] = handler;
 }