Пример #1
0
 /// <inheritdoc />
 /// <summary>
 /// Send the typing action to the chat
 /// </summary>
 /// <param name="chat">Chat where the typing action will be sent</param>
 /// <returns>Async task</returns>
 public Task SendTypingAsync(BotChat chat)
 {
     _client.SendTyping(chat.Id);
     return(Task.CompletedTask);
 }