Microsoft.Exchange.WebServices.Data.Appointment IsOnlineMeeting Set action is invalid for Property

谁都会走 提交于 2019-12-11 04:52:10

问题


Trying to create a calendar event in exchange using the Microsoft.Exchange.WebServices.Data.Appointment. Everything works fine until I set the IsOnlineMeeting property to True. This results in the error "Set action is invalid for Property".

In the Appointment object this property is marked as "settable". I'm able to set the IsResponseRequested property to true with no issues. Has anyone experienced this issue before with IsOnlineMeeting property?

// Summary:
//     Gets or sets a value indicating whether this is an online meeting.
 public bool IsOnlineMeeting { get; set; }
// Summary:
//     Gets or sets a value indicating whether responses are requested when invitations are sent for this meeting.
public bool IsResponseRequested { get; set; }

来源:https://stackoverflow.com/questions/39254066/microsoft-exchange-webservices-data-appointment-isonlinemeeting-set-action-is-in

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!