DirectoryEntry.Name Property

Definition

Gets the name of the object as named with the underlying directory service.

C#
public string Name { get; }
C#
[System.ComponentModel.Browsable(false)]
[System.DirectoryServices.DSDescription("DSName")]
public string Name { get; }

Property Value

The name of the object as named with the underlying directory service.

Attributes

Examples

The following example creates a DirectoryEntry for the node in the Active Directory Domain Services. It then displays the Name and Path properties of its child nodes.

C#
String myADSPath = "LDAP://onecity/CN=Users,
             DC=onecity,DC=corp,DC=fabrikam,DC=com";
DirectoryEntry myDirectoryEntry=new DirectoryEntry(myADSPath);

Console.WriteLine("DirectoryEntry Name :"+ myDirectoryEntry.Name);
Console.WriteLine("\nThe child entries for this node "+
   "in the Active Directory Domain Services hierarchy");

foreach(DirectoryEntry myDirectoryEntryChild in
   myDirectoryEntry.Children)
{
   Console.WriteLine(myDirectoryEntryChild.Path);
}

Remarks

This name, along with SchemaClassName, distinguishes this entry from its siblings and must be unique among its siblings in each container.

Applies to

Product Versions
.NET 8 (package-provided), 9 (package-provided), 10 (package-provided)
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0 (package-provided)
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10