微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

c# – 如何将PrincipalContext与MVC Web应用程序一起使用

我在MVC .Net 3.5中有一个网站,我需要在Controller中使用下面的代码.
所以我引用了名称空间

System.DirectoryServices.AccountManagement

我收到一个错误

Error   1   The type or namespace name 'DirectoryServices' does not exist in the namespace 'System' (are you missing an assembly reference?)

我错过了哪个装配以及如何在项目中添加它?

// set up domain context
        PrincipalContext ctx = new PrincipalContext(ContextType.Domain);

        // find a user
        UserPrincipal user = UserPrincipal.FindByIdentity(ctx,"SomeUserName");

        if (user != null)
        {
            // do something here.... 
            string givenname = user.Givenname;
        }

解决方法

确保已添加对此命名空间所在的System.DirectoryServices.AccountManagement.dll程序集的引用.

供参考:PrincipalContext.

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐