使用 C# 检查 Active Directory 中是否存在 UserID
我们如何检查 USERID 是否存在于 Active Directory 中。
我有 LDAP 字符串和用户 ID,我可以查找该用户 ID 是否存在于 Active Directory 中。我将其用于 ASP.NET Web 应用程序 (.NET 3.5)
How can we check whether the USERID exists in Active Directory or not.
I have LDAP String and UserID, can I find whether that UserID exists in Active Directory or not. I am using this for ASP.NET Web Application (.NET 3.5)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以执行以下操作(将域替换为您要进行身份验证的域或完全删除参数):
实现检查用户是否存在。它来自 System.DirectoryServices.AccountManagement 命名空间和程序集。
您可以在 http://msdn.microsoft.com 找到更多信息/en-us/library/system.directoryservices.accountmanagement.aspx
您可能需要更多地了解PrincipalContext,因为它具有用于验证用户凭据等的有趣方法。
You can do something along the lines of (replacing domain with the domain you're authenticating against or removing the parameter altogether):
To achieve checking for if a user exists. This comes from the
System.DirectoryServices.AccountManagement
namespace and assembly.You can find more information at http://msdn.microsoft.com/en-us/library/system.directoryservices.accountmanagement.aspx
You may want to check more into PrincipalContext as it has interesting methods for authenticating user credentials and such.
我将使用 System.DirectoryServices.AccountManagement 命名空间。
请参阅 http://msdn.microsoft.com/en-us/library/bb344891 .aspx 了解更多信息
I would use the
System.DirectoryServices.AccountManagement
namespace.See http://msdn.microsoft.com/en-us/library/bb344891.aspx for more info