3
我從我的應用程序向名爲extcod的外部代碼屬性的Google聯繫人上傳了聯繫人。通過擴展屬性查詢Google API聯繫人
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 Contacts。但我不明白如何使用ContactsQuery
類設置使用ExtendedProperty
的where條件。