我正在使用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或其他东西重装?请记住,我需要用数千件物品来做这件事,所以效率对我来说很重要。
答案 0 :(得分:49)
调用Load方法解决了我的问题:)
foreach (Item item in findResults.Items)
{
item.Load();
string subject = item.Subject;
string mailMessage = item.Body;
}
答案 1 :(得分:40)
答案 2 :(得分:5)
您可以使用自定义属性集加载属性。某些属性是Extended属性而不是FirstClassProperties。
小例子:
_customPropertySet = new PropertySet(BasePropertySet.FirstClassProperties, AppointmentSchema.MyResponseType, AppointmentSchema.IsMeeting, AppointmentSchema.ICalUid); _customPropertySet.RequestedBodyType = BodyType.Text; appointment.Load(_customPropertySet);