//Event Broadcasts

        private void BroadcastConvertingChatLogEvent(string message)
        {
            Chat.EventHandlers.ConvertingChatLogEventArgs e = new Chat.EventHandlers.ConvertingChatLogEventArgs();
            e.Message = message;
            OnConvertingChatLog(this, e);
        }
 protected virtual void OnConvertingChatLog(object sender, Chat.EventHandlers.ConvertingChatLogEventArgs e)
 {
     ConvertingChatLog?.Invoke(this, e);
 }