使用不正确的凭据锁定帐户调用PrincipalContext.ValidateCredentials

时间:2014-05-29 18:00:02

标签: c# active-directory ntlm

我找到了以下代码来验证NT域用户,但如果输入的密码错误次数太多,该帐户将被锁定。

如果输入的密码不正确,是否存在不会锁定用户的API调用?当然,假设没有改变当前的锁定政策。

using (PrincipalContext context = new PrincipalContext(ContextType.Domain, domain))
{
    return context.ValidateCredentials(username, password);
}

0 个答案:

没有答案