DirectoryEntry.SchemaEntry 屬性

定義

取得這個項目的結構描述物件。

public System.DirectoryServices.DirectoryEntry SchemaEntry { get; }
[System.ComponentModel.Browsable(false)]
[System.DirectoryServices.DSDescription("DSSchemaEntry")]
public System.DirectoryServices.DirectoryEntry SchemaEntry { get; }

屬性值

DirectoryEntry 物件,此物件表示這個項目的結構描述類別。

屬性

範例

下列範例示範 SchemaClassName 類別的 DirectoryEntrySchemaEntry 屬性。 這個範例會取得使用者指定的 DirectoryEntry 物件,如果 SchemaEntry 對像是容器物件,則會取得其所有子系。 SchemaEntry如果Name該物件的 是 「container」 ,則為容器物件。

String myADSPath = "LDAP://onecity/CN=Users,DC=onecity,DC=corp,DC=fabrikam,DC=com";  

// Creates an Instance of DirectoryEntry.  
DirectoryEntry  myDirectoryEntry=new DirectoryEntry(myADSPath, UserName, SecurelyStoredPassword);  

// Display the 'SchemaClassName'.  
Console.WriteLine("Schema class name:"+myDirectoryEntry.SchemaClassName);  

// Gets the SchemaEntry of the ADS object.  
DirectoryEntry mySchemaEntry = myDirectoryEntry.SchemaEntry;  

if (string.Compare(mySchemaEntry.Name,"container") == 0)  
{  
   foreach(DirectoryEntry myChildDirectoryEntry in myDirectoryEntry.Children)  
      Console.WriteLine(myChildDirectoryEntry.Path);  
}  

備註

項目的架構會決定其必要和選擇性屬性名稱的清單。

您可以使用這個屬性來找出相關聯物件上可用的屬性和方法。

適用於

產品 版本
.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

另請參閱