Esempio n. 1
0
        //Event Broadcasts

        protected void BroadcastDownloadingChatLogEvent(string message)
        {
            Fetching.RechatTool.EventHandlers.DownloadingChatLogEventArgs e = new Fetching.RechatTool.EventHandlers.DownloadingChatLogEventArgs();
            e.Message = message;
            OnDownloadingChatLog(this, e);
        }
Esempio n. 2
0
 protected virtual void OnDownloadingChatLog(object sender, Fetching.RechatTool.EventHandlers.DownloadingChatLogEventArgs e)
 {
     DownloadingChatLog?.Invoke(this, e);
 }