DirectoryEntry.Name Свойство
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Возвращает имя объекта, присвоенное базовой службой каталогов.
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
Значение свойства
Имя объекта, присвоенное базовой службой каталогов.
- Атрибуты
Примеры
В следующем примере создается DirectoryEntry для узла в доменные службы Active Directory. Затем отображаются Name свойства и Path дочерних узлов.
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);
}
Комментарии
Это имя, наряду с SchemaClassName, отличает эту запись от ее одноуровневых элементов и должно быть уникальным среди ее одноуровневых элементов в каждом контейнере.