public void Handle(TLUpdateEncryptedChatTyping encryptedChatTyping)
 {
     if (Chat != null &&
         With != null &&
         Chat.Index == encryptedChatTyping.ChatId.Value)
     {
         BeginOnThreadPool(() => InputTypingManager.AddTypingUser(With.Index, new TLSendMessageTypingAction()));
     }
 }
 public void Handle(TLUpdateEncryptedChatTyping encryptedChatTyping)
 {
     if (Chat != null &&
         With != null &&
         Chat.Index == encryptedChatTyping.ChatId.Value)
     {
         BeginOnThreadPool(() => AddTypingUser(With.Index));
     }
 }