次のコードがあります。
using( var context = new PrincipalContext( ContextType.Machine ) )
{
    if (context.ValidateCredentials("nonexistinguser", "pwd"))
    {
        System.Threading.Thread.Sleep(0);
    }
}
PrincipalOperationExceptionそれは次の線で得られます
if (context.ValidateCredentials("nonexistinguser", "pwd"))
次のテキストで
複数のユーザー名を使用して、同じユーザーがサーバーまたは共有リソースに複数接続することは許可されていません。サーバーまたは共有リソースへの以前の接続をすべて切断して、再試行してください。
これだけでは意味がありません。
私は何を間違っていますか?