DirectoryEntry.Name Egenskap

Definition

Hämtar namnet på objektet som det heter med den underliggande katalogtjänsten.

public:
 property System::String ^ Name { System::String ^ get(); };
[System.ComponentModel.Browsable(false)]
[System.DirectoryServices.DSDescription("DSName")]
public string Name { get; }
[<System.ComponentModel.Browsable(false)>]
[<System.DirectoryServices.DSDescription("DSName")>]
member this.Name : string
Public ReadOnly Property Name As String

Egenskapsvärde

Namnet på objektet med namnet med den underliggande katalogtjänsten.

Attribut

Exempel

I följande exempel skapas en DirectoryEntry för noden i Doménové služby Active Directory. Sedan visas Name egenskaperna och Path för dess underordnade noder.

Dim myADSPath As String = "LDAP://onecity/CN=Users,DC=onecity,
           _DC=corp,DC=fabrikam,DC=com"
Dim myDirectoryEntry As New DirectoryEntry(myADSPath)

Console.WriteLine("DirectoryEntry Name :" + myDirectoryEntry.Name)
Console.WriteLine(ControlChars.NewLine _
        + "The child entries for this node in the Active Directory Domain Services hierarchy")

Dim myDirectoryEntryChild As DirectoryEntry
For Each myDirectoryEntryChild In  myDirectoryEntry.Children
   Console.WriteLine(myDirectoryEntryChild.Path)
Next myDirectoryEntryChild
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);
}

Kommentarer

Det här namnet, tillsammans med SchemaClassName, skiljer den här posten från dess syskon och måste vara unik bland dess syskon i varje container.

Gäller för