如何使用System.DirectoryServices.AccountManagement命名空间获取Active Directory用户属性?

编程入门 行业动态 更新时间:2024-10-26 23:24:49
本文介绍了如何使用System.DirectoryServices.AccountManagement命名空间获取Active Directory用户属性?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我想从用户那里获取Active Directory属性,并且想使用 System.DirectoryServices.AccountManagement 。

I want do get Active Directory Properties from a user and I want to use System.DirectoryServices.AccountManagement.

我的代码:

public static void GetUserProperties(string dc,string user) { PrincipalContext ctx = new PrincipalContext(ContextType.Domain, dc); UserPrincipal u = UserPrincipal.FindByIdentity(ctx, user); string firstname = u.GivenName; string lastname = u.Surname; string email = u.EmailAddress; string telephone = u.VoiceTelephoneNumber; ...//how I can get company and other properties? }

推荐答案

您可以过渡到DirectoryServices

You can transition into the DirectoryServices namespace to get any property you need.

PrincipalContext ctx = new PrincipalContext(ContextType.Domain, dc); UserPrincipal u = UserPrincipal.FindByIdentity(ctx, user); string firstname = u.GivenName; string lastname = u.Surname; string email = u.EmailAddress; string telephone = u.VoiceTelephoneNumber; string company = String.Empty; ...//how I can get company and other properties? if (userPrincipal.GetUnderlyingObjectType() == typeof(DirectoryEntry)) { // Transition to directory entry to get other properties using (var entry = (DirectoryEntry)userPrincipal.GetUnderlyingObject()) { if (entry.Properties["company"] != null) company = entry.Properties["company"].Value.ToString(); } }

更多推荐

如何使用System.DirectoryServices.AccountManagement命名空间获取Active Directory用户属性?

本文发布于:2023-06-06 02:23:06,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/534723.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:如何使用   属性   用户   空间   System

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!