在C#中,要对Active Directory(AD)进行用户认证,可以使用System.DirectoryServices.AccountManagement
命名空间。以下是一个简单的示例,展示了如何验证用户凭据:
using System;
using System.DirectoryServices.AccountManagement;
namespace ActiveDirectoryAuthentication
{
class Program
{
static void Main(string[] args)
{
string domain = "your_domain"; // 例如: "contoso.com"
string username = "your_username";
string password = "your_password";
bool isAuthenticated = AuthenticateUser(domain, username, password);
if (isAuthenticated)
{
Console.WriteLine("用户认证成功!");
}
else
{
Console.WriteLine("用户认证失败!");
}
}
public static bool AuthenticateUser(string domain, string username, string password)
{
using (PrincipalContext context = new PrincipalContext(ContextType.Domain, domain))
{
return context.ValidateCredentials(username, password);
}
}
}
}
请确保将your_domain
、your_username
和your_password
替换为实际的Active Directory域、用户名和密码。此代码将创建一个PrincipalContext
实例,并使用ValidateCredentials
方法验证提供的凭据。如果认证成功,该方法将返回true
,否则返回false
。