Skip to main content

TdxCloudStorage.OnItemDeleted Event

Enables you to respond to a successful online resource delete operation.

Declaration

property OnItemDeleted: TItemChangedEvent read; write;

Remarks

This event occurs every time a cloud storage metadata container‘s Delete procedure call destroys the corresponding file or folder within the cloud file storage. If an attempt to delete a file or folder results in an error, the OnError event occurs instead.

For instance, you can handle the OnItemDeleted event to indicate that a file or folder has been irreversibly removed from the file storage. Refer to the TItemChangedEvent nested type description for information on parameters accessible within an OnItemDeleted event handler.

Note

An attempt to delete the cloud storage root or any special folder raises an exception rather than the OnError event.

See Also