EWS托管API:更新/保存后获取LastModifiedTime

时间:2013-04-09 13:30:19

标签: c# exchange-server exchangewebservices

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

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

通过将项目与特殊的属性集绑定来执行此操作。

但这会降低我的通话速度。

有没有办法在没有新绑定的情况下读取LastModifiedTime ON更新/保存?

// 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;

0 个答案:

没有答案