在我要添加和更新多个Google联系人的程序中,我需要设置联系人的Job Title
字段(可在Gmail的Google商家模板下找到)。我尝试了几件事 - 设置Title
属性,制作扩展属性,设置Occupation
字段等等。
//Didn't even show up when I checked the contact on Gmail
contact.ExtendedProperties.Add(new ExtendedProperty(splitter[1], "Job Title"));
//Caused other problems; also didn't work
contact.Title = splitter[1];
我认为我可能需要
我已经检查了documentation并一次又一次地运行它并在Google上搜索了几个,答案还没有出现。
答案 0 :(得分:0)
我相信它是googlecontata->组织。这为您提供了一个组织列表。每个组织都有一个Title属性(以及许多其他属性),这正是您要寻找的。