コード例 #1
0
 public static void FireDoNotifyerAction(SLNotifyerEventArgs args)
 {
     if (DoNotifyerAction != null)
     {
         DoNotifyerAction(args);
     }
 }
コード例 #2
0
 private static void OnDoNotifyAction(SLNotifyerEventArgs args)
 {
     switch (args.Action)
     {
     case NotifyActionTypes.ShowLog:
         SLLogEvents.FireShowLogFile();
         break;
     }
 }