我如何获得主重复约会 EWS?

how do i get master recurrence appointment EWS?

我的预约周期为一周。通过使用下面的代码行:

FindItemsResults<Appointment> results = folder.findAppointments(cView);

结果返回同一约会的所有出现,我只希望每个约会在其中有一个条目。我该怎么做?

如果您使用 FindItems 方法 https://msdn.microsoft.com/en-us/library/microsoft.exchange.webservices.data.folder.finditems(v=exchg.80).aspx 而不是 FindAppointments 方法,那么 return 所有约会对象都不会展开(例如,对于重复约会,您将只获得主实例) .