我正在使用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格式更改为纯文本?