这就是我创建 DirectoryEntry 以连接到 AD 服务器的方式(13.198.123.456)
DirectoryEntry ldap_connection = new DirectoryEntry("LDAP://13.198.123.456/OU=Abc,DC=def,DC=ijk,DC=com", "username", "password");
但是,如果我创建了没有 LDAP URL 的 DirectoryEntry,它将连接到用于登录我的 PC 的 AD
DirectoryEntry ldap_connection = new DirectoryEntry("", "username", "password");
这是预期的行为吗?关于这个的任何文件?