edtFTPnet/PRO - Secure FTP component for .NET | Free Trial | Pricing
Called when a file deletion operation has completed (though it may have been cancelled).

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

Syntax

C#
protected virtual void OnDeleted(
	string remoteFile,
	bool cancelled,
	Exception ex,
	DateTime remoteModTime
)
Visual Basic
Protected Overridable Sub OnDeleted ( _
	remoteFile As String, _
	cancelled As Boolean, _
	ex As Exception, _
	remoteModTime As DateTime _
)
Visual C++
protected:
virtual void OnDeleted(
	String^ remoteFile, 
	bool cancelled, 
	Exception^ ex, 
	DateTime remoteModTime
)

Parameters

remoteFile
Type: System..::..String
File deleted.
cancelled
Type: System..::..Boolean
true if the operation was cancelled (and the file was not deleted).
ex
Type: System..::..Exception
Exception thrown (if failed)
remoteModTime
Type: System..::..DateTime

See Also