我是新手访问Active Directory,我被建议使用System.DirectoryServices.AccountManagement
命名空间,但我不知道如何搜索具有特定首字母的用户。
任何帮助?
答案 0 :(得分:1)
以下是使用PrincipalSearcher
的完整示例,如果您愿意,也可以使用自己的属性(代码原样)。
/* Looking for users
*/
PrincipalContext domainContext = new PrincipalContext(ContextType.Domain, "WM2008R2ENT:389", "dc=dom,dc=fr", "jpb", "root.123");
/* Create a user principal to look for
*/
slxUser aSlxUser = new slxUser(domainContext);
aSlxUser.streetAddress = "The Adress"
/* FindAll
*/
PrincipalSearchResult<Principal> results = new PrincipalSearcher(aSlxUser).FindAll();
Console.WriteLine(results.Count());
使用slxUser的定义:
[DirectoryObjectClass("user")]
[DirectoryRdnPrefix("CN")]
class slxUser : UserPrincipal
{
public slxUser(PrincipalContext context)
: base(context) { }
public slxUser(PrincipalContext context, string samAccountName, string password, bool enabled ) : base(context, samAccountName, password, enabled)
{
}
[DirectoryProperty("streetAddress")]
public string streetAddress
{
get
{
object[] result = this.ExtensionGet("streetAddress");
if (result != null)
{
return (string)result[0];
}
else
{
return null;
}
}
set { this.ExtensionSet("streetAddress", value); }
}
}