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 bazową 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 element 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);
}
String^ myADSPath = "LDAP://onecity/CN=Users,DC=onecity,DC=corp,DC=fabrikam,DC=com";
DirectoryEntry^ myDirectoryEntry = gcnew DirectoryEntry(myADSPath);
Console::WriteLine("DirectoryEntry Name : {0}", myDirectoryEntry->Name);
Console::WriteLine("\nThe child entries for this node in the Active Directory Domain Services hierarchy");
Collections::IEnumerator^ myEnumerator = myDirectoryEntry->Children->GetEnumerator();
while (myEnumerator->MoveNext())
{
DirectoryEntry^ myDirectoryEntryChild = safe_cast<DirectoryEntry^>(myEnumerator->Current);
Console::WriteLine(myDirectoryEntryChild->Path);
}
Uwagi
Ta nazwa wraz z elementem SchemaClassNamerozróżnia ten wpis od elementów równorzędnych i musi być unikatowa wśród jej elementów równorzędnych w każdym kontenerze.