如何检索定期约会

时间:2011-06-14 12:47:44

标签: c# exchangewebservices

我正在使用service.FindItems方法从Exchange服务器检索任命,但它不会返回定期约会。它返回重复项的第一个实例,但之后不再返回,并且在约会上将IsRecurring设置为false。

这是代码:

private void loadUsersAppointments(string user, int rscID)
    {
        // Add a search filter that searches on the body or subject.
        List<SearchFilter> searchFilterCollection = new List<SearchFilter>();
        searchFilterCollection.Add(new SearchFilter.IsGreaterThan(AppointmentSchema.Start, DateTime.Today.AddDays(-7)));

        // Create the search filter.
        SearchFilter searchFilter = new SearchFilter.SearchFilterCollection(LogicalOperator.Or, searchFilterCollection.ToArray());

        CalendarView V = new CalendarView(DateTime.Today.AddDays(-7), DateTime.Today.AddMonths(1), 1000);
        V.PropertySet = new PropertySet(BasePropertySet.IdOnly, AppointmentSchema.Subject, AppointmentSchema.Start, AppointmentSchema.End);
        V.Traversal = ItemTraversal.Shallow;

        // Create a view with a page size of 50.
        ItemView view = new ItemView(10000);

        // Identify the Subject and DateTimeReceived properties to return.
        // Indicate that the base property will be the item identifier
        view.PropertySet = new PropertySet(BasePropertySet.IdOnly, AppointmentSchema.Subject, AppointmentSchema.Start, AppointmentSchema.End);

        // Order the search results by the DateTimeReceived in descending order.
        view.OrderBy.Add(AppointmentSchema.Start, SortDirection.Descending);

        // Set the traversal to shallow. (Shallow is the default option; other options are Associated and SoftDeleted.)
        view.Traversal = ItemTraversal.Shallow;

        // Send the request to search the Inbox and get the results.
        ExchangeService service = GlobalFunc.ElevateGetBinding();
        service.ImpersonatedUserId = new ImpersonatedUserId(ConnectingIdType.SmtpAddress, user+"@works.local");
        FindItemsResults<Item> findResults = service.FindItems(WellKnownFolderName.Calendar, searchFilter, view);

        List<Item> items = new List<Item>();
        foreach (Microsoft.Exchange.WebServices.Data.Appointment appointment in findResults)
        {
            items.Add(appointment);
        }
        service.LoadPropertiesForItems(items, PropertySet.FirstClassProperties);

        // Process each item.
        foreach (Microsoft.Exchange.WebServices.Data.Appointment myItem in items)
        {
            DevExpress.XtraScheduler.Appointment AddAppt = new DevExpress.XtraScheduler.Appointment();

            try {
                if (myItem.Subject.StartsWith("Advisor Appointment"))
                    AddAppt.LabelId = 8;
                else
                    AddAppt.LabelId = 2;
                AddAppt.Subject = myItem.Subject;
            }
            catch { }
            try
            {

            }
            catch (Exception ex) { MessageBox.Show(ex.Message); }
            try { AddAppt.Start = myItem.Start; }
            catch { }
            try { AddAppt.Description = myItem.Body; }
            catch { }
            try { AddAppt.End = myItem.End; }
            catch { }
            AddAppt.ResourceId = rscID;




            schStorage.Appointments.Add(AddAppt);
        }
    }

非常感谢任何想法。

由于

1 个答案:

答案 0 :(得分:0)

您需要使用CalendarView来获得定期约会。定期约会的实例不是Exchange数据库中的实际项目。相反,当您查询特定时间范围时,Exchange会动态创建虚拟项目。

相关问题