Example #1
0
 protected void BroadcastNewProgressDownloadingChatLogEvent(string message, int progress, int taskBarProgress)
 {
     Fetching.RechatTool.EventHandlers.NewProgressDownloadingChatLogEventArgs e = new Fetching.RechatTool.EventHandlers.NewProgressDownloadingChatLogEventArgs();
     e.Message         = message;
     e.Progress        = progress;
     e.TaskBarProgress = taskBarProgress;
     OnNewProgressDownloadingChatLog(this, e);
 }
Example #2
0
 protected virtual void OnNewProgressDownloadingChatLog(object sender, Fetching.RechatTool.EventHandlers.NewProgressDownloadingChatLogEventArgs e)
 {
     NewProgressDownloadingChatLog?.Invoke(this, e);
 }