Hi, 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
|
2
|
Hi, Is there a Active Directory Helper Class available somewhere? Just checking before I re-invent the wheel. I need to
Thanks
|
||
|
|
|
|
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.
|
||||
|
|
|
Here is some example code that I have been using:
|
||
|
|
|
System.DirectoryServices.ActiveDirectory namespace http://msdn.microsoft.com/en-us/library/system.directoryservices.activedirectory.aspx |
||||||
|