using System; using System.DirectoryServices; public class MainClass { public static int Main(string[] args) { DirectoryEntry MyObject = new DirectoryEntry(); MyObject.Path = "LDAP://HMSRevenge/OU=Users,DC=Test,DC=com"; foreach(string MyValue in MyObject.Properties["email"]) Console.WriteLine("Email" + " : " + MyValue); return 0; } }
34.2.Read | ||||
34.2.1. | Retrieves Active Directory information | |||
34.2.2. | Get DirectoryEntry Path | |||
34.2.3. | Get Property Collection using PropertyCache | |||
34.2.4. | Get Property Collection | |||
34.2.5. | Get MultiValued Attribute | |||
34.2.6. | Get Single Attribute | |||
34.2.7. | Reading Known Directory Objects | |||
34.2.8. | Get Properties | |||
34.2.9. | List Objects |