如何使用 C# 访问 Lotus Notes 中的组
我正在尝试使用 C# 从 Lotus Notes 访问组。
I am trying to access Groups from Lotus Notes using C#.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我正在尝试使用 C# 从 Lotus Notes 访问组。
I am trying to access Groups from Lotus Notes using C#.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
在Notes / Domino 中,组作为Notes 文档存储在名称和地址簿(NAB) 数据库中,该数据库通常作为names.nsf 存储在服务器的主数据文件夹中。如果您尝试访问某个组的详细信息(例如,该组的成员资格列表),您可以采用与访问任何 Notes 数据库中的文档相同的方式来执行此操作。因此,在 C# 中,您可以使用 domino.dll API。我没有示例代码,但基本步骤是:
In Notes / Domino, Groups are stored as notes documents within the Name and Address Book (NAB) database, which is generally stored as names.nsf in the home data folder of the server. If you are trying to access details of a group (say, the group's membership list), you can do this in the same way that you would access documents in any Notes database. So, from C#, you can use the domino.dll API. I don't have sample code, but the basic steps would be: