Important: The information in this document is obsolete and should not be used for new development.
SetProgressMode
Sets the progress mode for an asynchronous process.
void SetProgressMode (in short mode);
mode
- The progress mode of the process. Valid values for this parameter are
kUnmeteredProgress
orkMeteredProgress
.DISCUSSION
You can call theSetProgressMode
method to set the progress mode of a process and broadcast the change to all attached progress receivers.The progress mode of the process indicates whether the total amount of work to be performed is known and can be measured. For example, if you know in advance the number of bytes to be downloaded, the progress mode is metered. In contrast, if you don't know in advance the number of bytes to be downloaded, the progress mode is unmetered. The default progress mode is unmetered.
If you subclass
CyberProgressBroadcaster
and override this method, your override must call its inherited method.SEE ALSO
TheGetProgressMode
method (page 304).