Exchange托管API:如何搜索自定义日期以来创建的所有约会?

时间:2011-07-19 10:19:49

标签: c# .net exchange-server exchangewebservices

使用Exchange托管ApI,我需要获得创建日期更新或等于定义日期的所有约会。我该怎么做?

1 个答案:

答案 0 :(得分:5)

您可以使用FindItems请求执行此操作:

var items = service.FindItems(WellKnownFolderName.Calendar, new SearchFilter.IsGreaterThanOrEqualTo(ItemSchema.DateTimeCreated, DateTime.Today), new ItemView(100));

请注意,您不会获得定期约会扩展,因此只返回定期约会的主约会。