-1

我在域 DomainA 下的用户 User001 下使用密码 Pass001 登录。

我使用此代码

//var principalContext = new PrincipalContext(
    //ContextType.Domain,
    //"DomainA",
    //"User001",
    //"Pass001");

var principalContext = new PrincipalContext(
    ContextType.Domain,
domain, 
    userName,
    password);
var userPrincipal = new UserPrincipal(principalContext);

并且userPrincipal 始终为 NULL。

如何解决?

4

1 回答 1

1

不知何故,我发现这段代码工作正常......

 using (var context = new PrincipalContext(ContextType.Domain))
            {
                using (UserPrincipal principal = UserPrincipal.FindByIdentity(context, userName))
                {
                    var uGroups = principal.GetGroups();
                    foreach (var group in uGroups)
                    {
                        Debug.WriteLine(group.DisplayName);
                    }
                }
            }
于 2013-12-13T11:14:21.987 回答