Is there a Active Directory Helper Class available somewhere? Just checking before I re-invent the wheel.
I need to
Validate a user in AD.
Get hhis/her member roles.
Thanks
|
Is there a Active Directory Helper Class available somewhere? Just checking before I re-invent the wheel. I need to
Thanks
| |||
|
feedback
|
|
In .NET 3.5, you want to look in System.DirectoryServices.AccountManagement. For earlier, versions System.DirectoryServices has what you need, but it's a little more work.
| |||||||
feedback
|
|
Here is some example code that I have been using:
| |||
|
feedback
|
|
System.DirectoryServices.ActiveDirectory namespace http://msdn.microsoft.com/en-us/library/system.directoryservices.activedirectory.aspx | |||||||
feedback
|