我有以下代码:
using( var context = new PrincipalContext( ContextType.Machine ) )
{
if (context.ValidateCredentials("nonexistinguser", "pwd"))
{
System.Threading.Thread.Sleep(0);
}
}
与PrincipalOperationException
_
if (context.ValidateCredentials("nonexistinguser", "pwd"))
带有以下文字
不允许同一用户使用多个用户名与服务器或共享资源建立多个连接。断开与服务器或共享资源的所有先前连接,然后重试。
这没有任何意义。
我究竟做错了什么?