强制 DirectoryEntry 解除 LDAP 连接绑定
我正在编写一个 C# 应用程序,尝试通过 DirectoryServices.DirectoryEntry 绑定 LDAP 服务器。有多个 DirectoryEntry 对象访问服务器。我看到所有这些对象都在服务器上使用相同的连接(我通过 TCPViewer 查看并只看到一个 ldap 连接)。尽管我认为我正在通过 myDirectoryObject.Close() 方法关闭所有对象,但服务器上仍然存在打开的连接。是否可以强制连接关闭与服务器的打开连接?
I'm coding a C# application trying to bind an LDAP server via DirectoryServices.DirectoryEntry. There are several DirectoryEntry objects accessing to the server. I saw that all of these objects use the same connection on the server (I check it out by TCPViewer and saw only one ldap connection). Although I think I'm closing all objects by myDirectoryObject.Close() method, there is still an open connection on the server. Is it possible to force the connection to close the open connection to a server?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想要在连接级别进行控制,我认为您应该使用 System.DirectoryServices.Protocols。
If you want the control at the connection level, I think you should use System.DirectoryServices.Protocols.