示例#1
0
        /// <summary>
        /// Appends a set of styled text to the chat's output TextBox.
        /// </summary>
        /// <param name="text">Text to append to the chat's output TextBox.</param>
        public void AppendToChatOutput(string text)
        {
            // Clean up with profanity handler
            text = _profanityHandler.ProcessMessage(text);

            _chatForm.AppendToOutput(text);
        }
示例#2
0
 /// <summary>
 /// Appends a set of styled text to the chat's output TextBox.
 /// </summary>
 /// <param name="text">Text to append to the chat's output TextBox.</param>
 public void AppendToChatOutput(string text)
 {
     _chatForm.AppendToOutput(text);
 }