如何在 Manatee.Trello 中检索板背景颜色或图像?
How to retrieve a board background color or image in 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;
根据访问者签名,这应该 return string
或 WebColor
。
它编译正常,但在运行时出现以下错误:
NullReferenceException: Object reference not set to an instance of an object
即使图板当前有图像或彩色背景。有没有其他方法可以访问此信息,或者 Manatee.Trello 中是否存在错误?
这是搜索中的一个错误,将在下一个版本中解决。我创建了 issue 68 来跟踪它。
更新
请参阅版本 1.17.0 进行修复。
我正在尝试使用 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;
根据访问者签名,这应该 return string
或 WebColor
。
它编译正常,但在运行时出现以下错误:
NullReferenceException: Object reference not set to an instance of an object
即使图板当前有图像或彩色背景。有没有其他方法可以访问此信息,或者 Manatee.Trello 中是否存在错误?
这是搜索中的一个错误,将在下一个版本中解决。我创建了 issue 68 来跟踪它。
更新
请参阅版本 1.17.0 进行修复。