DirectorySearcher.FindAll Method

Definition

Executes the search and returns a collection of the entries that are found.

public:
 System::DirectoryServices::SearchResultCollection ^ FindAll();
public System.DirectoryServices.SearchResultCollection FindAll ();
member this.FindAll : unit -> System.DirectoryServices.SearchResultCollection
Public Function FindAll () As SearchResultCollection

Returns

A SearchResultCollection object that contains the results of the search.

Exceptions

The specified DirectoryEntry is not a container.

Searching is not supported by the provider that is being used.

Remarks

Due to implementation restrictions, the SearchResultCollection class cannot release all of its unmanaged resources when it is garbage collected. To prevent a memory leak, you must call the Dispose method when the SearchResultCollection object is no longer needed.

Applies to

See also