using System.DirectoryServices.AccountManagement;
public class AuthenticationService
public bool AuthenticateUser(string username, string password)
string domain = "corp.example.com";
using (PrincipalContext pc = new PrincipalContext(ContextType.Domain, domain))
return pc.ValidateCredentials(username, password);
public static void Main(string[] args)
AuthenticationService authService = new AuthenticationService();
string username = "validuser";
string password = "validpassword";
bool result = authService.AuthenticateUser(username, password);
Console.WriteLine(result);