使用EWS加载约会的属性

时间:2018-08-07 07:48:58

标签: c# exchangewebservices appointment

我正在使用Exchange Web服务(EWS)加载日历约会。

myService.FindAppointments(FolderId, calendarView);

返回的约会没有所需的“正文”属性。因此,我执行LoadPropertiesForItems()

myService.LoadPropertiesForItems(from Item it in myAppointments select it, PropertySet.FirstClassProperties);

这可以按预期工作,但是约会主体以HTML格式返回。

我试图通过操纵RequestedBodyType来改变它。

myService.LoadPropertiesForItems(from Item it in myAppointments select it, new PropertySet(PropertySet.FirstClassProperties){RequestedBodyType = BodyType.Text});

这会产生以下错误:

  

必须先加载或分配此属性,然后才能读取ist值。

如何将正文返回值从HTML格式更改为纯文本?

0 个答案:

没有答案