如何维护Lotus Notes版本? C#
我制作了一款从邮件中检索附件并将其保存在特定文件夹中的产品。
但我面临的问题是它在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想要检查 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