コード例 #1
0
 public void BroadcastConvertedChatLogEvent(string message)
 {
     Chat.EventHandlers.ConvertedChatLogEventArgs e = new Chat.EventHandlers.ConvertedChatLogEventArgs();
     e.Message = message;
     OnConvertedChatLog(this, e);
 }
コード例 #2
0
 protected virtual void OnConvertedChatLog(object sender, Chat.EventHandlers.ConvertedChatLogEventArgs e)
 {
     ConvertedChatLog?.Invoke(this, e);
 }