C# - Find all email addresses for an Active Directory user(C# - 查找 Active Directory 用户的所有电子邮件地址)
问题描述
我正在尝试获取与给定 AD 用户关联的所有电子邮件地址.
I'm trying to get all the email addresses associated to a given AD user.
对于用户,我拥有域和登录名(例如 DOMAINUserName),并且我的 AD 将电子邮件地址存储在:
For the user I have the domain and the login name (ex. DOMAINUserName) and I the AD is storing the email addresses in:
- 邮件属性.
- 在
proxyAddresses
属性中.
到目前为止,我不知道使用什么 C# API 来连接到 AD,以及如何由用户正确过滤以获取所有电子邮件地址.我使用的是 .NET 3.5.
So far, I don't know what C# API to use to connect to the AD, and how to properly filter by the user to fetch all the email addresses. I'm using .NET 3.5.
谢谢.
推荐答案
这是使用 System.DirectoryServices
命名空间.
Here's a possible solution using various classes in the System.DirectoryServices
namespace.
string username = "username";
string domain = "domain";
List<string> emailAddresses = new List<string>();
PrincipalContext domainContext = new PrincipalContext(ContextType.Domain, domain);
UserPrincipal user = UserPrincipal.FindByIdentity(domainContext, username);
// Add the "mail" entry
emailAddresses.Add(user.EmailAddress);
// Add the "proxyaddresses" entries.
PropertyCollection properties = ((DirectoryEntry)user.GetUnderlyingObject()).Properties;
foreach (object property in properties["proxyaddresses"])
{
emailAddresses.Add(property.ToString());
}
这篇关于C# - 查找 Active Directory 用户的所有电子邮件地址的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:C# - 查找 Active Directory 用户的所有电子邮件地址
基础教程推荐
- 如何使用OpenXML SDK将Excel转换为CSV? 2022-01-01
- 使用 SED 在 XML 标签之间提取值 2022-01-01
- 覆盖 Json.Net 中的默认原始类型处理 2022-01-01
- 创建属性设置器委托 2022-01-01
- C# - 如何列出发布到 ASPX 页面的变量名称和值 2022-01-01
- Page.OnAppearing 中的 Xamarin.Forms Page.DisplayAlert 2022-01-01
- 当键值未知时反序列化 JSON 2022-01-01
- 我什么时候应该使用 GC.SuppressFinalize()? 2022-01-01
- C# - 将浮点数转换为整数...并根据余数更改整数 2022-01-01
- 从 VB6 迁移到 .NET/.NET Core 的最佳策略或工具 2022-01-01