Skip to main content

TdxCloudStorage.OnItemUploaded Event

Notifies of the successful finish of a file upload process.

Declaration

property OnItemUploaded: TItemUploadedEvent read; write;

Remarks

The OnItemUploading and OnItemUploaded events occur at the start and successful finish of a file upload process, respectively. If an attempt to upload a local file to the connected online storage’s server resulted in an error, the OnError event occurs instead of OnItemUploaded. Call a cloud folder metadata container‘s UploadFile procedure to start uploading a file into the corresponding folder on the connected online storage’s server.

For instance, you can handle this event to populate the list of files that are successfully uploaded during a connection session. Refer to the TItemUploadedEvent nested type description for details on all parameters accessible within an OnItemUploaded event handler.

Note

Handle the OnItemUpload event to track the progress of the active file upload process.

See Also