C#连接到LDAP(Windows Server)

时间:2019-01-08 07:30:07

标签: c# ldap

我需要在Windows Server上登录LDAP。

首先我需要在DC上启用任何功能吗?

比我的连接代码看起来像这样:

Console.WriteLine("Connect to LDAP mydomain");

        Console.Write("Enter your username: ");
        string username = Console.ReadLine();

        Functions.maskInputString();
        string password = Console.ReadLine();

        DirectoryEntry directoryEntry = new DirectoryEntry("LDAP://mydomain", username, password)

        Console.ReadKey();

我可以喜欢DirectoryEntry directoryEntry = new DirectoryEntry("LDAP://mydomain", username, password)的某些条件吗

登录是否成功?

因为现在当我输入用户名和密码时,我不知道是否建立了连接。

感谢答案。

0 个答案:

没有答案