使用 C# 从 nsf 文件(例如:mail/usermail.nsf)列出收件箱、发件箱、日历、日记等

发布于 2024-07-30 12:29:11 字数 145 浏览 5 评论 0原文

我正在开发一个应用程序,我必须在树视图中列出所有用户邮件 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 技术交流群。

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

发布评论

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

评论(2

余生共白头 2024-08-06 12:29:11

Notes 提供了一个 COM 接口,可以让您获得这些东西。 对象模型基于 LotusScript,但这对您来说仍然没问题。

创建一个 Notes.NotesSession 对象并从那里运行。 从这里开始并查看页面底部的示例链接。 您特别感兴趣的应该是:

  • Notes.NotesSession.getDatabase()
  • Notes.NotesDatabase.open()
  • Notes.NotesDatabase.views
  • Notes.NotesDatabase.getView()

所有 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:

  • Notes.NotesSession.getDatabase()
  • Notes.NotesDatabase.open()
  • Notes.NotesDatabase.views
  • Notes.NotesDatabase.getView()

Online help for all the COM classes here (Notes 8.5)

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