如何在联系人条目中添加昵称?
我想使用 "Google.GData.Extensions.Apps" 在 Google 联系人中添加“昵称”。
我可以将昵称创建为:
NicknameElement obj_nickname = new NicknameElement(); obj_nickname.Name = "詹妮弗";
但是如何将 i 添加到联系人条目中呢?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
联系人 API 支持使用 gContact:nickname 元素的昵称。此元素是 Contacts API 3.0 版本中的新增元素,因此位于 gContact 命名空间中。例如:
幸运的是,.NET 客户端库已更新为该参数的 getter 和 setter,尽管这些方法在 .NET 开发人员指南。但是,您可以在 源代码。它们在源代码中:
因此,您可以使用以下代码来设置联系人的昵称。
有关详细信息,请参阅 .NET 开发人员指南。祝你好运!
The Contacts API does support nicknames using the gContact:nickname element. This element is new in version 3.0 of the Contacts API, and as such is in the gContact namespace. For example:
Fortunately, the .NET client library has been updated with a getter and setter for this parameter, although the methods are undocumented in the .NET Developer's Guide. But, you can find them in the source code.They're in the source code here:
Thus, you can use the following code to set a contact's nickname.
For more information, please see the .NET Developer's Guide. Good luck!
为了进一步帮助其他人,
使用最新的 .net API,我需要稍微不同地设置昵称,因为我找不到 Nickname 对象。我将保持它与维克的答案类似,以扩展而不是替换它。这种方法已经过测试并且对我有用。抱歉,Vic,如果我错过了您的解决方案中的某些内容,我还无法添加评论。
根据文档包含命名空间。
To further help others,
Using the latest .net API, I needed to set the nickname slightly differently as I couldn't find the Nickname object. I'll keep it similar to Vic's answer as to extend not replace it. This approach has been tested and works for me. Sorry Vic if I've missed something with your solution, I can't add comments yet.
Included namespaces as per documentation.