Skip to main content

TdxCloudStorage.OnFileContentUploaded Event

Notifies that a file update process has successfully finished.

Declaration

property OnFileContentUploaded: TFileContentUploadedEvent read; write;

Remarks

The OnFileContentUploading and OnFileContentUploaded events occur at the start and successful finish of a file update process, respectively. If an attempt to update a stored file from the local source results in an error, the OnError event occurs after OnFileContentUploading. Call a stored file metadata container‘s UploadContent procedure to update the corresponding file from the source local data stream.

For instance, you can handle this event to indicate that your application has successfully updated a file on the connected online storage service’s server. Refer to the TFileContentUploadedEvent nested procedural type description for details on all parameters accessible within an OnFileContentUpdated event handler.

Note

Handle the OnFileContentUpload event to track the progress of the active file update process.

See Also