private void BroadcastNewProgressDownloadingBadgeEvent(string message, int progress)
 {
     Badges.EventHandlers.NewProgressDownloadingBadgeEventArgs e = new Badges.EventHandlers.NewProgressDownloadingBadgeEventArgs();
     e.Message  = message;
     e.Progress = progress;
     OnNewProgressDownloadingBadge(this, e);
 }
 protected virtual void OnNewProgressDownloadingBadge(object sender, Badges.EventHandlers.NewProgressDownloadingBadgeEventArgs e)
 {
     NewProgressDownloadingBadge?.Invoke(this, e);
 }