Freigeben über


Abrufen der Identität eines Objekts

DirectoryEntry umfasst mehrere Eigenschaften, mit denen die Identität eines Objekts abgerufen werden kann.

Im folgenden Codebeispiel wird veranschaulicht, wie die Eigenschaften Path, Guid und Name für ein Benutzerobjekt abgerufen werden.

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.
}

Siehe auch

Referenz

System.DirectoryServices
DirectoryEntry

Konzepte

Erste Schritte in System.DirectoryServices

Send comments about this topic to Microsoft.

Copyright © 2007 Microsoft Corporation. Alle Rechte vorbehalten.