/// <summary> /// Subscribes or unsubscribes a user from the selected board /// </summary> /// <param name="value">Whether or not the user is subscribed to the board</param> private void setSubscribed(bool value) { trello.PutSubscribed(boards[selectedBoard].id, value); updateSubscribed(); }