BiliRanking.Core.Download.MultiThreadedWebDownloader.MultiThreadedWebDownloader C# (CSharp) Method

MultiThreadedWebDownloader() public method

Download the whole file. The default buffer size is 1KB, memory cache is 1MB, buffer count per notification is 64, threads count is the double of logic processors count.
public MultiThreadedWebDownloader ( string url ) : System
url string
return System
        public MultiThreadedWebDownloader(string url)
            : this(url, 1024, 1048576, 64, Environment.ProcessorCount * 2)
        {
        }

Same methods

MultiThreadedWebDownloader::MultiThreadedWebDownloader ( string url, int bufferSize, int cacheSize, int bufferCountPerNotification, int maxThreadCount ) : System