libcURL.EasyHandle.UseProgressEvent - charonn0/RB-libcURL GitHub Wiki
libcURL.EasyHandle.UseProgressEvent
Property Declaration
Dim UseProgressEvent As Boolean
Remarks
Gets and sets whether libcURL will raise the Progress event.
The Progress event might be called very frequently, so if you aren't handling it then you may see a performance boost by disabling the event entirely. This applies even in Xojo, where events aren't raised unless they have a handler; the progress callback method will be executed regardless of whether a handler will subsequently be invoked. Setting this property to False disables both the callback and the event.
This can be toggled on and off at any time. The default is True.
See also
- CURLOPT_NOPROGRESS in the libcURL documentation.