Returns the enumerator with which the given search can be enumerated
An IEnumerator for the entire FtpSearch.
This method enables a FtpSearch instance to be used in a foreach expression, as in:
FtpSearch search = . . .;
foreach(FileEntry entry in search)
{
Console.WriteLine(entry.Path);
}
As with the FtpSearch constructor, no enumeration is carried out at this time, only
when the returned enumerator is used.
When the enumerator's MoveNext method is called, it may throw a ReclsException if the
search fails, except for the case where the search runs out of data. In this case, the enumerator's
MoveNext method returns false.
FtpSearch Class | recls Namespace