Exemplo n.º 1
0
        private void RaiseUpdateCheckFinishedEvent(bool updateAvailable)
        {
            var args = new ConnectionsUpdateCheckFinishedEventArgs {
                UpdateAvailable = updateAvailable
            };

            UpdateCheckFinished?.Invoke(this, args);
        }
 private void OnUpdateCheckFinished(object sender, ConnectionsUpdateCheckFinishedEventArgs eventArgs)
 {
     _updateTimer.Start();
     UpdateCheckFinished?.Invoke(sender, eventArgs);
 }