PrincipalContext.ValidateCredentials产生PrincipalOperationException

时间:2013-06-25 12:41:38

标签: c# .net windows

我有以下代码:

using( var context = new PrincipalContext( ContextType.Machine ) )
{
    if (context.ValidateCredentials("nonexistinguser", "pwd"))
    {
        System.Threading.Thread.Sleep(0);
    }
}

行上产生PrincipalOperationException
if (context.ValidateCredentials("nonexistinguser", "pwd"))

使用以下文字

  

不允许同一用户使用多个用户名与服务器或共享资源建立多个连接。断开之前与服务器或共享资源的所有连接,然后重试。

这没有任何意义。

我做错了什么?

0 个答案:

没有答案