117.info
人生若只如初见

c# active目录如何查询用户信息

在C#中,要查询Active Directory的用户信息,可以使用System.DirectoryServices.AccountManagement命名空间。以下是一个简单的示例,展示了如何查询Active Directory中的用户信息:

using System;
using System.DirectoryServices.AccountManagement;

namespace ActiveDirectoryQuery
{
    class Program
    {
        static void Main(string[] args)
        {
            // 设置Active Directory连接
            string domain = "your_domain";
            string username = "your_username";
            string password = "your_password";

            using (PrincipalContext context = new PrincipalContext(ContextType.Domain, domain, username, password))
            {
                // 根据用户名查询用户
                string userNameToSearch = "user_to_search";
                UserPrincipal user = UserPrincipal.FindByIdentity(context, userNameToSearch);

                if (user != null)
                {
                    Console.WriteLine("User Information:");
                    Console.WriteLine($"Name: {user.DisplayName}");
                    Console.WriteLine($"Email: {user.EmailAddress}");
                    Console.WriteLine($"Phone: {user.VoiceTelephoneNumber}");
                    Console.WriteLine($"Title: {user.Title}");
                    Console.WriteLine($"Department: {user.Department}");
                    Console.WriteLine($"Manager: {user.Manager?.DisplayName}");
                }
                else
                {
                    Console.WriteLine("User not found.");
                }
            }
        }
    }
}

请确保将your_domainyour_usernameyour_passworduser_to_search替换为实际的值。这个示例将查询指定用户的基本信息,如姓名、电子邮件、电话、职位、部门和经理。你可以根据需要修改此示例以获取其他属性。

未经允许不得转载 » 本文链接:https://www.117.info/ask/fe71dAzsPAgNSDQ.html

推荐文章

  • c#键值对使用的方法是什么

    在C#中,可以使用Dictionary类来表示键值对。以下是一些常用的方法: 添加键值对: Dictionary keyValuePairs = new Dictionary();
    keyValuePairs.Add("key...

  • c# modbustcp读到的浮点数如何处理

    在C#中使用ModbusTCP协议读取到的浮点数通常是以16位或32位的方式表示的,需要根据具体的情况进行处理。以下是处理浮点数的一般方法: 如果浮点数是以16位的方式...

  • c#中modbustcp的用法是什么

    在C#中使用Modbus TCP主要是通过第三方库来实现,比如NModbus库。使用这个库可以很方便地实现Modbus TCP的通讯功能。
    以下是使用NModbus库进行Modbus TCP通...

  • c#中modbustcp的作用是什么

    在C#中,Modbus TCP用于实现Modbus通信协议的TCP/IP版本,用于在网络上通过TCP/IP协议进行数据通信。Modbus TCP是一种开放的通信协议,通常用于工业控制系统和设...

  • c# plotly怎样进行图表数据分析

    在C#中,使用Plotly库可以轻松地创建交互式图表。Plotly是一个开源的图形库,支持多种编程语言,包括C#。要在C#中使用Plotly,首先需要安装Plotly.NET库。你可以...

  • c# plotly支持哪些数据源格式

    C# 的 Plotly 库支持多种数据源格式,以下是一些常见的格式: CSV(逗号分隔值):这是一种简单的文本文件格式,其中数据以逗号分隔。CSV 文件可以很容易地导入到...

  • c# plotly图表如何实现动画效果

    在C#中,使用Plotly.NET库可以轻松地创建交互式图表
    首先,确保已经安装了Plotly.NET库。在NuGet包管理器中搜索并安装Plotly.NET。
    接下来,创建一个简...

  • c# plotly怎样集成到web应用

    要在C# Web应用中集成Plotly,你可以使用Plotly.js库。这是一个基于JavaScript的开源图表库,可以轻松地在Web页面上创建交互式图表。以下是将Plotly集成到C# Web...