2011-01-14 104 views
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条件。

回答

相关问题