ExFTPConnectionSynchronizingFile Event |
Triggered when a decision is being made on how to synchronize a particular
file (i.e. transfer, delete or skip).
Namespace:
EnterpriseDT.Net.Ftp
Assembly:
edtFTPnetPRO (in edtFTPnetPRO.dll) Version: 12.3.0.0
Syntaxpublic event FTPSyncFileEventHandler SynchronizingFile
Public Event SynchronizingFile As FTPSyncFileEventHandler
public:
event FTPSyncFileEventHandler^ SynchronizingFile {
void add (FTPSyncFileEventHandler^ value);
void remove (FTPSyncFileEventHandler^ value);
}
member SynchronizingFile : IEvent<FTPSyncFileEventHandler,
FTPSyncFileEventArgs>
Value
Type:
EnterpriseDT.Net.FtpFTPSyncFileEventHandler
Remarks
This event may be used to set the action that is to be taken
during the synchronization operation. The event arguments
(
FTPSyncFileEventHandler) gives access to information
about each file, including name, path, date and size. These may be
used to decide what sort of action should be taken, which is done
by setting the
Action property.
See Also