一部の連絡先を Excahnge-Webservices と同期しています。
サーバー上で連絡先が変更されたかどうかを知る必要があります。このために、更新後に LastModifiedTime を読みたいと思います。
アイテムを特別なプロパティセットにバインドすることでこれを行っています。
しかし、それは私の呼び出しを遅くします。
新しいバインドなしで LastModifiedTime ON Update/Save を読み取る方法はありますか?
// Save the contact.
contact.Update(ConflictResolutionMode.AlwaysOverwrite);
PropertySet ps = new PropertySet(BasePropertySet.IdOnly);
ps.Add(ItemSchema.LastModifiedTime);
contact = Contact.Bind(service, contact.Id.UniqueId, ps); // rebind the item to get the LastModifiedTime
lastServerModificationDate = contact.LastModifiedTime;