Exchange EWS Api - 按类别获取日历约会

Exchange EWS Api - Get calendar appointment by category

我目前正在开发一款应用程序,用于检查一个或多个用户日历中特定类别下的 appointments/meetings。

作为使用 EWS 的新手,我一直在尝试寻找一种解决方案,以按类别获取日历项目(约会或会议)或确定约会是否具有特定类别。到目前为止,我目前有以下代码 (exService = ExchangeService object):

foreach (Appointment a in exService.FindItems(WellKnownFolderName.Calendar, new ItemView(int.MaxValue)))
            {
                //Need to check if appointment has category f.x.: "SMS"
            }

有人知道实现这个的方法吗?

谢谢

当您查询约会时,您希望使用 FindAppointments 和日历视图而不是使用 FindItems,这将确保扩展任何重复约会,例如参见 [​​=11=]

要使用类别,您需要做的就是

        DateTime startDate = DateTime.Now;
        DateTime endDate = startDate.AddDays(60);
        const int NUM_APPTS = 1000;

        // Initialize the calendar folder object with only the folder ID. 
        CalendarFolder calendar = CalendarFolder.Bind(service, WellKnownFolderName.Calendar, new PropertySet());

        // Set the start and end time and number of appointments to retrieve.
        CalendarView cView = new CalendarView(startDate, endDate, NUM_APPTS);

        // Limit the properties returned to the appointment's subject, start time, and end time.
        cView.PropertySet = new PropertySet(AppointmentSchema.Subject, AppointmentSchema.Start, AppointmentSchema.End,AppointmentSchema.Categories);

        // Retrieve a collection of appointments by using the calendar view.
        FindItemsResults<Appointment> appointments = calendar.FindAppointments(cView);

        Console.WriteLine("\nThe first " + NUM_APPTS + " appointments on your calendar from " + startDate.Date.ToShortDateString() +
                          " to " + endDate.Date.ToShortDateString() + " are: \n");
        foreach (Appointment a in appointments)
        {
            if (a.Categories.Contains("Green"))
            {
                Console.Write("Subject: " + a.Subject.ToString() + " ");
                Console.Write("Start: " + a.Start.ToString() + " ");
                Console.Write("End: " + a.End.ToString());
            }                
            Console.WriteLine();
        }