如何更改托管 Exchange Web 服务中的 AppointmentStatus
我需要将约会状态更改为会议,以便可以一键发送邀请。但 Appointment.AppointmentStatus
和 Appointment.IsMeeeting
是只读属性。我发现,使用反射器,PropertyBag 类用于设置和获取项目属性,但它也是内部的。我可以以某种方式改变这个属性吗?
I need to change appointment status to meeting, so that it invitations can be send by one click. But Appointment.AppointmentStatus
and Appointment.IsMeeeting
are read only properties. I've found, using reflector, that PropertyBag
class is used for setting and getting items properties, but it's also internal. Can I change this properties somehow?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我设法做到了。步骤并不那么简单和逻辑,但它们是:
其中 Guid 是约会的 PropertySet,那个奇怪的数字是 MeetingStatus 属性 id。仅此而已。 “发送”按钮默认处于活动状态。
I manage to do it. Steps are not so simple and logical, but here they are:
where Guid is PropertySet of appointments, and that strange number is MeetingStatus property id. And that's all. "Send" button is active by default.