如何更改托管 Exchange Web 服务中的 AppointmentStatus

发布于 2024-08-21 09:47:33 字数 180 浏览 9 评论 0原文

我需要将约会状态更改为会议,以便可以一键发送邀请。但 Appointment.AppointmentStatusAppointment.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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

颜漓半夏 2024-08-28 09:47:33

我设法做到了。步骤并不那么简单和逻辑,但它们是:

var extendedProperty = new ExtendedPropertyDefinition(new Guid("00062002-0000-0000-C000-000000000046"), 0x8217, MapiPropertyType.Integer);
meeting.SetExtendedProperty(extendedProperty, 1);

其中 Guid 是约会的 PropertySet,那个奇怪的数字是 MeetingStatus 属性 id。仅此而已。 “发送”按钮默认处于活动状态。

I manage to do it. Steps are not so simple and logical, but here they are:

var extendedProperty = new ExtendedPropertyDefinition(new Guid("00062002-0000-0000-C000-000000000046"), 0x8217, MapiPropertyType.Integer);
meeting.SetExtendedProperty(extendedProperty, 1);

where Guid is PropertySet of appointments, and that strange number is MeetingStatus property id. And that's all. "Send" button is active by default.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文