public static void FireDoNotifyerAction(SLNotifyerEventArgs args)
 {
     if (DoNotifyerAction != null)
     {
         DoNotifyerAction(args);
     }
 }
Exemplo n.º 2
0
 private static void OnDoNotifyAction(SLNotifyerEventArgs args)
 {
     switch (args.Action)
     {
     case NotifyActionTypes.ShowLog:
         SLLogEvents.FireShowLogFile();
         break;
     }
 }