/// <summary> /// Sets whether the current user is typing. /// </summary> /// <param name="typing">Whether the user is typing or not. If false, the timeout key can be omitted.</param> /// <param name="timeout">The length of time in milliseconds to mark this user as typing.</param> public void SetTyping(bool typing, int timeout = 30000) { api.RoomTypingSend(ID, typing, timeout); }