我使用SharePoint Web Services在Outlook加载项中编写自定义代码,以在SharePoint中创建会议工作区。然后我将会议添加到创建的工作区。 基本上我想模仿Outlook本身提供的功能。
问题是在创建会议后,我无法使用我的自定义代码在MeetingWorkspaceUrl
中设置AppointmentItem
属性。它说这个属性是只读的。
但是当我使用默认的Outlook功能创建工作区时,我可以看到MeetingWorkspaceUrl
设置为有效的URL。
我可以通过自定义代码执行相同的操作吗?
答案 0 :(得分:1)
MeetingWorkspaceUrl
is readonly in the Outlook API,您需要使用 EWS ( AppointmentItem.MeetingWorkspaceUrl
)来分配其值。