Copyright © 2005-2023 MultiMedia Soft

Downloader.EnableParallelDownload method

Previous pageReturn to chapter overviewNext page

Remarks

 

Enables/disables downloading in parallel mode: when enabled, the downloader performs parallel downloads of different chunks of the same file in order to avoid download speed throttling by certain types of server.

 

For details about management of download sessions from HTTP and FTP servers, refer to the How to manage download sessions tutorial.

 

 

Syntax

 

[Visual Basic]

Public Function EnableParallelDownload (

bEnable as Boolean

)


 

[C#]

public void EnableParallelDownload (

bool bEnable

);


 

[C++]

public: void EnableParallelDownload(

bool bEnable

);


 

 

Parameter

Description

 

 

bEnable

Flag for determining if the usage parallel download mode must be disabled or not.

Supported values are the following:

Mnemonic constant

Meaning

false

Parallel download is disabled

true (default)

Parallel download is enabled

 

 

Return value

None