我正在使用以下代码在活动目录中查找用户
DirectoryEntry dirEntry = null;
using (dirEntry = new DirectoryEntry(ldapPath, ldapUser, ldapPassword))
{
try
{
Object adsiObject = dirEntry.NativeObject;
result = true;
}
catch (Exception exception)
{
errorInfo.ErrorCode = -1;
errorInfo.ErrorMessage = exception.Message;
}
}
我对“ldapUser”有疑问。
它对应于 Active Directory 中的哪个字段?是“用户登录名”还是“2000 年前的用户登录名”?
而且我需要知道可以为“ldapUser”字段提供的字符数。