标签: c# active-directory ntlm
我找到了以下代码来验证NT域用户,但如果输入的密码错误次数太多,该帐户将被锁定。
如果输入的密码不正确,是否存在不会锁定用户的API调用?当然,假设没有改变当前的锁定政策。
using (PrincipalContext context = new PrincipalContext(ContextType.Domain, domain)) { return context.ValidateCredentials(username, password); }