如何在Manatee.Trello中编辑Comment值?

时间:2017-02-17 15:59:16

标签: c# manatee.trello

我有一个评论我希望能够修改,但我不知道如何处理。

这是我到目前为止所尝试的内容:

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功能。使用此库更新注释数据的正确方法是什么?

1 个答案:

答案 0 :(得分:1)

已更新!

action.Data.Text = "updated comment";

如果操作不是评论,您可能会收到Trello的错误。

我会在维基中添加一个注释。我意识到它有点隐藏。

编辑... 2,我猜。

我最近发布了Manatee.Trello v1.16.0,它可以解决这个问题。如上所述使用它。