Exemple #1
0
        public static Task <Message> SendHtmlStringAsync(this ITelegramBotClient bot, Chat chat, HtmlString message, int?replyTo = null)
        {
            if (replyTo == null)
            {
                return(bot.SendTextMessageAsync(chat, message.ToString(), ParseMode.Html));
            }

            return(bot.SendTextMessageAsync(chat, message.ToString(), ParseMode.Html, replyToMessageId: replyTo.Value));
        }