LDIF 解析器 (C#)
我正在寻找 C# 的 LDIF 解析器。我正在尝试解析 LDIF 文件,以便在添加对象之前检查对象是否不存在。当使用 ntdsSchemaAdd 已经存在时添加它们会导致错误日志中出现一个条目。
I am looking for an LDIF parser for C#. I am trying to parse an LDIF file so that I can check objects don't exist before adding them. Adding them when the already exist using ntdsSchemaAdd) causes an entry in the error logs.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
快速网络搜索显示: http://wiki.github.com/skradel/Zetetic.Ldap/ 。他们提供了.net API。
从页面:
下载链接: http://github.com/downloads/skradel/Zetetic .Ldap/Zetetic.Ldap_20090831.zip
A quick websearch revealed: http://wiki.github.com/skradel/Zetetic.Ldap/. They have provided a .net API.
From the page:
Download link: http://github.com/downloads/skradel/Zetetic.Ldap/Zetetic.Ldap_20090831.zip
我会自己解析它。
如果您查看 EBNF 的 LDIF RFC,您会发现它不是非常复杂的语法。
在可靠地使用正则表达式之前,我已经解析了大量的 LDIF。尽管您的里程可能会有所不同。
I would parse it myself.
If you look at the LDIF RFC for the EBNF, you'll see that it's not a very complex grammar.
I've parsed a large amount of LDIF before using Regexes reliably. Though your mileage may vary.