3

我正在与 Excahnge-Webservices 同步一些联系人。

我必须知道是否在服务器上更改了联系人。为此,我想在更新后阅读 LastModifiedTime。

Atm 我通过将项目与特殊的属性集绑定来做到这一点。

但这会减慢我的通话速度。

有没有办法在没有新绑定的情况下读取 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;
4

0 回答 0