コード例 #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);
        }
コード例 #2
0
 protected virtual void OnDownloadingChatLog(object sender, Fetching.RechatTool.EventHandlers.DownloadingChatLogEventArgs e)
 {
     DownloadingChatLog?.Invoke(this, e);
 }