我想在我的.net核心应用程序中实现Active Directory身份验证。 当我阅读https://github.com/dotnet/corefx/issues/2089时,这提到.net核心不支持开箱即用的System.DirectoryServices。因此,根据帖子,我添加了System.DirectoryServices.AccountManagement的预览。
添加后如何创建ldap连接。我无法创建一个,因为它总是返回null或给出对象引用错误。
我尝试创建连接:
var context = new PrincipalContext(ContextType.Domain, "xx.com", username, password);
感谢任何帮助