using (PrincipalContext ctx = new PrincipalContext(ContextType.Domain, Domain, UserName, Password))
{
UserPrincipal U = new UserPrincipal(ctx);
U.GivenName = strFirstName;
U.Surname = strLastName;
U.EmailAddress = strEmail;
PrincipalSearcher srch = new PrincipalSearcher(U);
foreach (var principal in srch.FindAll())
{
var p = (UserPrincipal)principal;
if (!User.Any(x => x.Email == p.EmailAddress))
{
MyUserDataset.UserRow User = User.NewUserRow();
User.FirstName = p.GivenName;
User.LastName = p.Surname;
User.UserName = p.SamAccountName;
User.Email = p.EmailAddress;
User.AddUserRow(User);
}
}
User.AcceptChanges();
}
我正在使用上面的PrincipalContext类建立与目标目录的连接,并指定用于对目录执行操作的凭据。
有没有人知道如何在PrincipalContext构造函数中指定连接超时?我遇到连接超时问题&我想知道在连接可以超时多久之后我是否可以控制。
答案 0 :(得分:1)
嗯,我想不幸的是答案是肯定的。我深入研究了PrincipalContext的源代码,它使用了DirectoryEntry,它使用了不安全的本机方法System.DirectoryServices.Interop.UnsafeNativeMethods.ADsOpenObject来打开LDAP连接。
根据此博客:http://blogs.msdn.com/b/dsadsi/archive/2012/06/06/how-to-specify-timeout-for-ldap-bind-in-net.aspx,无法在ADsOpenObject上配置超时。但是,它还提到如果直接使用LdapConnection,则可以设置超时。在这种情况下,您可能无法使用PrincipalContext。