DirectoryEntry.Name Właściwość
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Pobiera nazwę obiektu o nazwie z podstawową usługą katalogową.
public:
property System::String ^ Name { System::String ^ get(); };
public string Name { get; }
[System.ComponentModel.Browsable(false)]
[System.DirectoryServices.DSDescription("DSName")]
public string Name { get; }
member this.Name : string
[<System.ComponentModel.Browsable(false)>]
[<System.DirectoryServices.DSDescription("DSName")>]
member this.Name : string
Public ReadOnly Property Name As String
Wartość właściwości
Nazwa obiektu o nazwie z podstawową usługą katalogową.
- Atrybuty
Przykłady
Poniższy przykład tworzy DirectoryEntry dla węzła w Active Directory Domain Services. Następnie wyświetla Name właściwości i Path węzłów podrzędnych.
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);
}
Uwagi
Ta nazwa, wraz z SchemaClassName, odróżnia ten wpis od jej elementów równorzędnych i musi być unikatowy wśród elementów równorzędnych w każdym kontenerze.