0
我想從我的應用程序和用戶Google Mail聯繫人中刪除聯繫人,我正在使用幫助程序文件。助手文件具有以下刪除方法:MVC 3和谷歌聯繫人API
public static void Delete(string pGoogleUsername, string pGooglePassword, string EditUri)
{
RequestSettings rs = new RequestSettings("myApplication", pGoogleUsername, pGooglePassword);
rs.AutoPaging = true;
ContactsRequest cr = new ContactsRequest(rs);
***ContactsQuery query = new ContactsQuery();
query.Uri = new Uri(EditUri);
AtomFeed contacts = rs.Query(query);
AtomEntry entry = new AtomEntry();
entry = contacts.Entries[0];***
entry.Delete();
}
我覺得還行有關代碼,除了明星中的代碼。我在AtomFeed contacts = rs.Query(query);中的「查詢」一詞下面出現錯誤。
任何幫助,非常感謝。