如何在Manatee.Trello中检索板背景颜色或图像?

时间:2017-03-08 15:37:20

标签: c# manatee.trello

我正在尝试使用Manatee.Trello检索现有的棋盘背景颜色或图像。这是我到目前为止所尝试的:

Board myboard =  new Search(SearchFor.TextInName("MyAwesomeBoard"), 1, SearchModelType.Boards).Boards.FirstOrDefault();
var boardColor = myboard.Preferences.Background.Color;
var boardImg = myboard.Preferences.Background.Image;

根据访问者签名,这应该返回stringWebColor。 它编译得很好,但在运行时我收到以下错误:

NullReferenceException: Object reference not set to an instance of an object

即使电路板目前有图像或彩色背景。有没有其他方法可以访问此信息或Manatee.Trello中是否有错误?

1 个答案:

答案 0 :(得分:2)

这是搜索中的错误,将在下一版本中解决。我已创建issue 68来跟踪它。

更新

请参阅版本1.17.0以获取修复。