DirectoryEntry.Name 屬性

定義

取得以基礎目錄服務命名的物件名稱。

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

屬性值

以基礎目錄服務命名的物件名稱。

屬性

範例

下列範例會在 DirectoryEntry Active Directory 網域服務 中建立 節點的 。 然後會顯示 Name 其子節點的和 Path 屬性。

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);  
}  

備註

這個名稱以及 SchemaClassName會區分這個專案與其同層級,而且在每個容器中的同層級之間必須是唯一的。

適用於

產品 版本
.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
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9