在Google通讯录中设置职位

时间:2014-07-03 00:57:53

标签: c# gdata

在我要添加和更新多个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];

我认为我可能需要

  1. 设置联系人的模板
  2. 以某种方式设置联系人的职位。
  3. 我已经检查了documentation并一次又一次地运行它并在Google上搜索了几个,答案还没有出现。

1 个答案:

答案 0 :(得分:0)

我相信它是googlecontata->组织。这为您提供了一个组织列表。每个组织都有一个Title属性(以及许多其他属性),这正是您要寻找的。