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); }
protected virtual void OnNewProgressDownloadingChatLog(object sender, Fetching.RechatTool.EventHandlers.NewProgressDownloadingChatLogEventArgs e) { NewProgressDownloadingChatLog?.Invoke(this, e); }