edtFTPnet/PRO - Secure FTP component for .NET | Free Trial | Pricing
Used for by multiple-file operations to determine whether or not a particular file should be included in the operation.

Namespace: EnterpriseDT.Net.Ftp
Assembly: edtFTPnetPRO (in edtFTPnetPRO.dll) Version: 9.4.0.40

Syntax

C#
public delegate bool FileFilter(
	FTPFile file
)
Visual Basic
Public Delegate Function FileFilter ( _
	file As FTPFile _
) As Boolean
Visual C++
public delegate bool FileFilter(
	FTPFile^ file
)

Remarks

The method that this delegate wraps should return true if the file or directory described by the given FTPFile is to be included in the operation being performed, and false if the file or directory is to be excluded.

See Also