Example #1
0
        static void OnStatusUpdate(eUpdateStatus status)
        {
            var handler = ConfigStatusChanged;

            if (handler != null)
            {
                handler(typeof(ConfigUpdater), new ConfigStatusEventArgs(status));
            }
        }
Example #2
0
 public ConfigStatusEventArgs(eUpdateStatus status)
 {
     UpdateStatus = status;
 }