libcURL.EasyHandle.BufferSize - charonn0/RB-libcURL GitHub Wiki
libcURL.EasyHandle.BufferSize
Property Declaration
Dim BufferSize As Integer
Remarks
Set preferred receive buffer size (in bytes). The main point of this would be that the DataAvailable event gets called more often and with smaller chunks. Secondly, for some protocols, there's a benefit of having a larger buffer for performance. This is just treated as a request, not an order. You cannot be guaranteed to actually get the given size.
Default is 16KB, minimum is 1KB, maximum is 10MB.
See also
- CURLOPT_BUFFERSIZE in the libcURL documentation.