recls C# mapping

FtpSearch.GetEnumerator Method 

Returns the enumerator with which the given search can be enumerated

[Visual Basic]
Overrides Public Function GetEnumerator() As IEnumerator
[C#]
public override IEnumerator GetEnumerator();

Return Value

An IEnumerator for the entire FtpSearch.

Remarks

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.

See Also

FtpSearch Class | recls Namespace