Outlook:如何获取 Appointment.Write 事件处理程序中新添加项目的引用(EntryID、可选和必需的与会者)
我想捕获新创建的约会项目的信息,为此我将事件与 NewInstpector 窗口 & 挂钩。再次挂钩 Write 事件。我还使用标准 Outlook 项目包装器(来自 msdn)。
问题出在 Item_Write 事件处理程序内部,我获得了新项目的引用,但某些属性为 NULL。例如 EntryID、可选与会者。
EntryID 的值可能为 null,因为交换服务器上尚未写入 item,因此问题是如何捕获新创建的 appiointment 项
Atul Sureka的 EntryID
I want to capture the information of new created appointment item, For that I hook the event with NewInstpector window & again hook the Write event. I am also using standard outlook item wrapper(from msdn).
The problem is inside the Item_Write event handler I get the reference of new item however some properties are coming as NULL. For e.g. EntryID, Optional attendees.
The value for EntryID might be null because item is not yet witten on the exchange server, so the question is how to capture the EntryID of newly created appiointment item
Atul Sureka
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在保存或发送商品之前,不会设置
EntryID
,因为否则不会将其添加到商店中。在读取条目 ID 之前,您需要执行上述任一操作。
EntryID
is not set until the item is saved or sent, because it isn't added to the store otherwise.You will need to do either of those things before you can read the entry ID.