使用 C# 从 nsf 文件(例如:mail/usermail.nsf)列出收件箱、发件箱、日历、日记等
我正在开发一个应用程序,我必须在树视图中列出所有用户邮件 NSF 文件。 目前我可以列出所有 NSF 文件。
我的下一步是从 NSF 文件中列出(获取)收件箱、发件箱、日历、日记等 (例如:mail/user-mail.NSF)。使用 C#。
I am working on a application where I have to list all user mail NSF file in tree view.
Currently I can list all NSF files.
Next step for me is to list(fetch) in-box,outbox,calenders,journal e.t.c. from NSF file
(e g: mail/user-mail.NSF).using C#.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Notes 提供了一个 COM 接口,可以让您获得这些东西。 对象模型基于 LotusScript,但这对您来说仍然没问题。
创建一个 Notes.NotesSession 对象并从那里运行。 从这里开始并查看页面底部的示例链接。 您特别感兴趣的应该是:
所有 COM 类的在线帮助 此处(注释 8.5)
Notes provides a COM interface that would allow you to get to this stuff. The object model is based around LotusScript but that should still be fine for you.
Create a Notes.NotesSession object and run from there. Start here and have a look at the examples link at the bottom of the page. Of particular interest to you should be:
Online help for all the COM classes here (Notes 8.5)
http://www.gutgames.com/ post/Exporting-Documents-from-TeamroomNSF-files-using-C.aspx
这将帮助您从 .nsf 文件中提取文档
http://www.gutgames.com/post/Exporting-Documents-from-TeamroomNSF-files-using-C.aspx
This will help you to extract documents from .nsf files