The
httpProgress type is used to manage the progress when sending or receiving an HTTP request. The progress characteristics can be defined and changed using different WLanguage properties.
This type of variable is used by:
Remark: For more details on the declaration of this type of variable and the use of WLanguage properties, see
Declaring a variable.
cMyRequest is httpRequest
cMyRequest.URL = "http://www.windev.com"
cMyRequest.DownloadProgress.Procédure = MyCallback
cMyResponse is httpResponse = HTTPSend(cMyRequest)
IF ErrorOccurred THEN
Error(ErrorInfo(errFullDetails))
ELSE
Info(cMyResponse.Content)
END
Remarks
Properties specific to the description of httpProgress variables
The following properties can be used to handle the progress when sending or receiving an HTTP request:
| | |
Property name | Type used | Effect |
---|
Frequency | Integer | Frequency for calling the progress bar or the procedure, defined in number of bytes. The frequency is set to 1000 bytes by default. Remark: The specified frequency may not be respected. |
Procedure | Character string | Name of procedure used to follow the progress. This procedure will be notified of the progress at the specified frequency. This procedure has the following format:
PROCEDURE <Procedure name> (<Total>, <Progress>)
where: - <Total> is the total number of bytes to transfer.
- <Progress> is the number of bytes already transferred.
Caution: If both Procedure and ProgressBar are specified, Procedure has priority for the call. |
ProgressBar | Character string | Name of the Progress Bar control used to follow the progress. This control will be notified of the progress at the specified frequency. Caution: If both Procedure and ProgressBar are specified, Procedure has priority for the call. |