개체 ID 가져오기
DirectoryEntry는 개체 ID를 검색할 수 있는 여러 속성을 제공합니다.
다음 코드 예제에서는 사용자 개체의 Path, Guid 및 Name 속성을 검색하는 방법을 보여 줍니다.
try
{
// Bind to the object for which to retrieve property data.
DirectoryEntry usr = new DirectoryEntry("LDAP://CN=User Name,OU=HR,DC=fabrikam,DC=com");
// Retrieve and write the Path for the object.
Console.WriteLine("Path: {0}", usr.Path);
// Retrieve and write the Guid for the object.
Console.WriteLine("Guid: {0}", usr.Guid);
// Retrieve and write the Name for the object.
Console.WriteLine("Name: {0}", usr.Name);
// Retrieve and write the DN for the object.
Console.WriteLine("DN: {0}", usr.Properties["distinguishedName"].Value);
}
catch
{
// Add error handling.
}
참고 항목
참조
System.DirectoryServices
DirectoryEntry
개념
Send comments about this topic to Microsoft.
Copyright © 2007 by Microsoft Corporation. All rights reserved.