recls C# mapping

FileSearch.ProcessEntry Delegate

The delegate for file entry processing

[Visual Basic]
Public Delegate Function FileSearch.ProcessEntry( _
   ByVal entry As FileEntry _
) As Boolean
[C#]
public delegate bool FileSearch.ProcessEntry(
   FileEntry entry
);

Parameters

entry
The current entry

Return Value

Return true to continue processing, or false to cancel all further processing

Remarks

This delegate is called for each entry in a search initiated by the Process methods of FileSearch.

Requirements

Namespace: recls

Assembly: recls.NET (in recls.NET.dll)

See Also

recls Namespace