1

问题

我需要能够使用 Exchange 托管 API 从会议室获取约会数据。我已经运行了大约一个月的服务,通过使用ExchangeService.GetUserAvailability()如下方式可以很好地达到此目的:

private IEnumerable<CalendarEvent> GetEvents(ExchangeService ExchangeService, string room, DateTime time, DateTime end)
{
    List<AttendeeInfo> attendees = new List<AttendeeInfo>();
    end = new DateTime(time.Ticks + Math.Max(end.Ticks - time.Ticks, time.AddDays(1).Ticks - time.Ticks));

    AttendeeInfo roomAttendee = new AttendeeInfo();
    roomAttendee.AttendeeType = MeetingAttendeeType.Room;
    roomAttendee.SmtpAddress = GetEmailAddress(room);
    attendees.Add(roomAttendee);

    Collection<CalendarEvent> events = ExchangeService.GetUserAvailability(
                attendees,
                new TimeWindow(time, end),
                AvailabilityData.FreeBusy
            ).AttendeesAvailability[0].CalendarEvents;

    return (from e in events
            where e.EndTime > time
            select e);
}

然而,我最近不得不扩展这项服务来执行一些需要更长时间跨度(从一天到几个月)的其他任务。这种方法随着时间的增加变得非常低效,并且当结果太多时偶尔会抛出错误。

问题

这是解决这个问题的最有效方法吗?我没有找到更好的方法,但我会很感激确认。

4

2 回答 2

2

您可以尝试使用ExchangeService.FindItems,它使您能够:

  • 使用分页来获取巨大的结果集。
  • 选择要从服务器获取的字段
  • 指定可以过滤此查询服务器端的 SearchFilter:

    从 e 在 e.EndTime > time 的事件中选择 e

于 2013-02-06T07:50:29.363 回答
0

我使用代表,希望有用。代码示例...

      ExchangeService service = new ExchangeService();
      ServicePointManager.ServerCertificateValidationCallback = CertificateValidationCallBack;
      service.Credentials = new NetworkCredential(username, password);
      service.Url = new Uri("...");


      List<DelegateUser> newDelegates = new System.Collections.Generic.List<DelegateUser>();
      DelegateUser calendarDelegate = new DelegateUser(roomemail);
      calendarDelegate.Permissions.CalendarFolderPermissionLevel = DelegateFolderPermissionLevel.Reviewer;
      newDelegates.Add(calendarDelegate);   
于 2014-12-22T12:38:57.777 回答