获取指定预约的重新安排通知
也许有人知道如何将会议(文档)与更改会议日期后发送的重新安排的通知链接起来。我需要在 Lotus C API 和 C# api 中执行此操作。
我需要检查会议创建后是否做了一些更改,
比如这样,
var document = UserDb.GetDocumentByUNID(uniqId);
if(document != null)
{
var col1 = document.GetResched(...)
var col2 = document.GetInvit(...)
.....
}
谢谢
Marcin
Maybe somebody knows how is linked a meeting (documment) with an rescheduled notice which are send after changing dates in meeting. I need do this in Lotus C API and C# api.
I need to check if after meeting was created did something change
Something like this
var document = UserDb.GetDocumentByUNID(uniqId);
if(document != null)
{
var col1 = document.GetResched(...)
var col2 = document.GetInvit(...)
.....
}
Thanks
Marcin
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
会议的UniversalID保存在重新安排通知的ApptUNID项中。
The UniversalID of the meeting is saved in the ApptUNID item on the reschedule notice.