Get DirectoryEntry Path : Read « Directory Services « C# / CSharp Tutorial






using System;
using System.DirectoryServices;

class MainClass
{
   public static void Main()
   {
      DirectoryEntry de2 = new DirectoryEntry("LDAP://192.168.1.100/ou=auditing, dc=accounting, dc=ispnet1, dc=net");
      string newpath = de2.Path;
      Console.WriteLine("new path: {0}", newpath);
      de2.Close();

   }
}
new path: LDAP://192.168.1.100/ou=auditing, dc=accounting, dc=ispnet1, dc=net








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