如何维护Lotus Notes版本? C#

发布于 2024-08-11 23:51:07 字数 242 浏览 3 评论 0原文

我制作了一款从邮件中检索附件并将其保存在特定文件夹中的产品。

但我面临的问题是它在 8.0 版本中不起作用。 我在Lotus Notes 8.5版本上进行开发。

我尝试过:

object obj =
  Activator.CreateInstance(Type.GetTypeFromProgID("Notes.NotesSession"));

但仍然面临同样的问题。

I made one product which is retrieving attachment from mails and saving it on particular folder.

But problem i am facing is it is not working in 8.0 version.
I did development on Lotus Notes 8.5 version.

I used tried:

object obj =
  Activator.CreateInstance(Type.GetTypeFromProgID("Notes.NotesSession"));

But still facing same problem.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

你穿错了嫁妆 2024-08-18 23:51:07

如果您想要检查 Notes 版本号,可以通过 Session 类的 NotesBuildVersion 属性来执行此操作。这是一个 long int,每个 Notes 客户端版本都有一个不同的值。

8.0 的内部版本号为 301(或更高)
8.5 的内部版本号为 323 或更高

请参阅此技术说明一个(几乎)完整的列表;还有这篇博客文章

If you are looking to check the Notes version number, you can do this through the NotesBuildVersion property of the Session class. This is a long int, with each Notes client version having a distinct value.

8.0 will have build number of 301 (or higher)
8.5 will have build number of 323 or higher

See this technote for a (nearly) complete list; also this blog post

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