Get Property Collection using PropertyCache : Read « Directory Services « C# / CSharp Tutorial






using System;
using System.DirectoryServices;

public class MainClass
{
  public static int Main(string[] args)
  {
    DirectoryEntry MyDirectoryObject = new DirectoryEntry();
    
    MyDirectoryObject.Path = "LDAP://HMSRevenge/rootDSE";
    MyDirectoryObject.Username = @"AAA\BBB";
    MyDirectoryObject.Password = @"MyPassword";
    MyDirectoryObject.UsePropertyCache = false;

    DirectoryEntries MyChildObjects = MyDirectoryObject.Children;
        
    PropertyCollection MyAttributes = MyDirectoryObject.Properties;
    foreach(string MyAttributeName in MyAttributes.PropertyNames)
    {
      PropertyValueCollection MyAttributeValues = MyAttributes[MyAttributeName];
      foreach(string MyValue in MyAttributeValues)
      {
        Console.WriteLine(MyAttributeName + " = " + 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