DirectoryEntry.Properties : DirectoryEntry « System.DirectoryServices « C# / C Sharp by API






DirectoryEntry.Properties

  
using System;
using System.DirectoryServices;

class MainClass
{
   public static void Main()
   {
      DirectoryEntry de = new DirectoryEntry(
         "LDAP://192.168.1.100/cn=kblum, ou=sales, dc=ispnet1, dc=net");
      Console.WriteLine("object: {0}", de.Path);
      PropertyCollection pc = de.Properties;
      foreach(string propName in pc.PropertyNames)
      {
         foreach(object value in de.Properties[propName])
            Console.WriteLine("  property = {0}   value = {1}",
               propName, value);
      }
   }
}

   
    
  








Related examples in the same category

1.new DirectoryEntry()
2.new DirectoryEntry(String connection)
3.DirectoryEntry.Children
4.DirectoryEntry.Close()
5.DirectoryEntry.CommitChanges()
6.DirectoryEntry.DeleteTree()
7.DirectoryEntry.Password
8.DirectoryEntry.Path
9.DirectoryEntry.Rename(String newName)
10.DirectoryEntry.Username