Yes it is. You should be able to incorporate that within your DirectoryEntry object: DirectoryEntry entry = new DirectoryEntry("LDAP://yourdomain.com", _userNameParam,_passwordParam,authenticationType); ... Then proceed with the rest of your code, if the DirectorySearcher is able to return any result(s) then you have authenticated, if not, then the "password" must have had been incorrect.
Nila