BiliRanking.Core.Download.HttpDownloadClient.BeginResume C# (CSharp) Метод

BeginResume() публичный Метод

Resume the download using ThreadPool.
public BeginResume ( ) : void
Результат void
        public void BeginResume()
        {
            // Only paused client can be resumed.
            if (this.Status != DownloadStatus.Paused)
            {
                throw new ApplicationException("Only paused client can be resumed.");
            }

            this.Status = DownloadStatus.Waiting;

            ThreadPool.QueueUserWorkItem(DownloadInternal);
        }