我已使用名为 extcod 的外部代码属性将应用程序中的联系人上传到 Google 联系人。
ExtendedProperty property = new ExtendedProperty();
property.Name = "http://www.example.com/schemas/2005#mycal.extcod";
property.Value = item["ana_id"].ToString();
newEntry.ExtendedProperties.Add(property);
现在我想通过扩展属性 extcod 搜索 Google 通讯录。但我不明白如何使用ContactsQuery
类来设置使用的 where 条件ExtendedProperty
。