我有一个评论我希望能够修改,但我不知道如何处理。
这是我到目前为止所尝试的内容:
using Manatee.Trello;
public class MyClass
{
//identification is done beforehand as per Manatee.Trello's wiki
Card c = new Card(existingCardID);
foreach(Action comment in card.Comments)
{
comment.Data.Value="empty comment";
}
}
但是,Action.Data.Value
仅具有get
功能。使用此库更新注释数据的正确方法是什么?
答案 0 :(得分:1)
action.Data.Text = "updated comment";
如果操作不是评论,您可能会收到Trello的错误。
我会在维基中添加一个注释。我意识到它有点隐藏。
我最近发布了Manatee.Trello v1.16.0,它可以解决这个问题。如上所述使用它。