SearchResult::GetDirectoryEntry Method ()
Retrieves the DirectoryEntry that corresponds to the SearchResult from the Active Directory Domain Services hierarchy.
Assembly: System.DirectoryServices (in System.DirectoryServices.dll)
public: [EnvironmentPermissionAttribute(SecurityAction::Assert, Unrestricted = true)] [SecurityPermissionAttribute(SecurityAction::Assert, Flags = SecurityPermissionFlag::UnmanagedCode)] DirectoryEntry^ GetDirectoryEntry()
Return Value
Type: System.DirectoryServices::DirectoryEntry^The DirectoryEntry that corresponds to the SearchResult.
Use GetDirectoryEntry when you want to look at the live entry instead of the entry that was returned through DirectorySearcher, or when you want to invoke a method on the object that was returned.
Note |
|---|
Calling GetDirectoryEntry on each SearchResult returned through DirectorySearcher can be slow. |
The following example is an excerpt of the example in SearchResult. The original example creates a new DirectoryEntry object with the desired path and uses the FindOne method to initiate the search. After performing the search, the example uses the GetDirectoryEntry method to retrieve the live directory entry that is identified in the search results.
// Get the 'DirectoryEntry' that corresponds to 'mySearchResult'. DirectoryEntry^ myDirectoryEntry = mySearchResult->GetDirectoryEntry(); Console::WriteLine( String::Concat("\nThe name of the 'myDirectoryEntry' ", "directory entry that corresponds to the ", "'mySearchResult' search result is : {0}\n"), myDirectoryEntry->Name);
Available since 1.1
