37

我正在使用 Exchange Web 服务托管 API 来处理任务 (Exchange 2007 SP1)。我可以很好地创建它们。但是,当我尝试进行更新时,它适用于除 .Body 字段之外的所有字段。每当我尝试访问(读取/更新)该字段时,都会出现以下错误:

"You must load or assign this property before you can read its value."

我正在使用的代码如下所示:

   //impersonate the person whose tasks you want to read
   Me.Impersonate(userName); //home-made function to handle impersonation

   //build the search filter
   Exchange.SearchFilter.SearchFilterCollection filter = New Exchange.SearchFilter.SearchFilterCollection();
   filter.Add(New Exchange.SearchFilter.IsEqualTo(Exchange.TaskSchema.Categories, "Sales"));

   //do the search
   EWS.Task exTask = esb.FindItems(Exchange.WellKnownFolderName.Tasks, filter, New Exchange.ItemView(Integer.MaxValue));

   exTask.Subject = txtSubject.Text;  //this works fine
   exTask.Body = txtBody.Text; //This one gives the error implying that the object isn't loaded

奇怪的是,检查属性包显示该对象包含 33 个属性,但 {Body} 不是其中之一。该属性似乎是从基类 .Item 或其他东西继承的。

那么,我是否需要将对象重新加载为 Item 类型?或者通过 .Bind 或其他方式重新加载它?请记住,我需要对数千个项目执行此操作,因此效率对我来说很重要。

4

3 回答 3

60

调用 Load 方法解决了我的问题:)

foreach (Item item in findResults.Items)
        {                
            item.Load();
            string subject = item.Subject;
            string mailMessage = item.Body;
        }
于 2013-10-04T07:20:46.063 回答
46

我在使用 EWS 时遇到了同样的问题。我的代码正在向

Outlook 日历,最后我无法访问事件本身的正文。

我的情况中缺少的一点是“如果有任何拼写错误,请原谅我”:

在收集了同样来自 EWS 项目类的约会后,我做了以下事情:

1-创建一个项目类型的列表:

List<Item> items = new List<Item>();

2-将所有约会添加到项目列表中:

if(oAppointmentList.Items.Count > 0) // Prevent the exception
{
    foreach( Appointment app in oAppointmentList)
    {
        items.Add(app);
    }
}

3-使用“我已经创建并使用过”的交换服务:

oExchangeService.LoadPropertiesForItems(items, PropertySet.FirstClassProperties);

现在,如果您尝试使用 app.Body.Text,它将成功返回。

享受编码和好运

我忘了提到资源:

http://social.technet.microsoft.com/Forums/en-US/exchangesvrdevelopment/thread/ce1e0527-e2db-490d-817e-83f586fb1b44

他提到了使用 Linq 来节省中间步骤,它将帮助您避免使用 List 项并节省一些内存!

洛克人X

于 2010-07-24T20:04:55.577 回答
5

您可以使用自定义属性集加载属性。某些属性是扩展属性而不是 FirstClassProperties。

小例子:

        _customPropertySet = new PropertySet(BasePropertySet.FirstClassProperties, AppointmentSchema.MyResponseType, AppointmentSchema.IsMeeting, AppointmentSchema.ICalUid);
        _customPropertySet.RequestedBodyType = BodyType.Text;
        约会.Load(_customPropertySet);
于 2012-08-23T12:21:31.287 回答