Given a username and a password for a domain user, what would be the best way to authenticate that user programatically?
|
|
|
|
|
|
|
Would this be what you are looking for |
||
|
|
|
|
It appears that .NET 3.5 added a new namespace to deal with this issue - System.DirectoryServices.AccountManagement. Code sample is below:
The namespace also seems to provide a lot of methods for manipulating a domain account (changing passwords, expiring passwords, etc). |
||
|
|
|
|
You can use some hacks to authenticate only.
If the user is not valid, the directory entry NativeObject cannot be accessed and throws an exception. While this isn't the most efficient way (exceptions are evil, blah blah blah), it's quick and painless. This also has the super-cool advantage of working with all LDAP servers, not just AD. |
||
|
|
