UploadProgress Event

Fired while the class is uploading files to the URL .

Syntax

ANSI (Cross Platform)
virtual int FireUploadProgress(WebUploadUploadProgressEventParams *e);
typedef struct {
int PercentDone; int reserved; } WebUploadUploadProgressEventParams; Unicode (Windows) virtual INT FireUploadProgress(WebUploadUploadProgressEventParams *e);
typedef struct {
INT PercentDone; INT reserved; } WebUploadUploadProgressEventParams;
- (void)onUploadProgress:(int)percentDone;
#define EID_WEBUPLOAD_UPLOADPROGRESS 15

virtual INT IPWORKS_CALL FireUploadProgress(INT &iPercentDone);

Remarks

The PercentDone parameter shows the progress of the upload. The event is fired at least once at the beginning of the transfer, and once at the end of the transfer. The respective values for PercentDone are 0 and 100.

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks 2020 C++ Edition - Version 20.0 [Build 8307]