ExpansionDownloader.Service.DownloaderService.RequestContinueDownload C# (CSharp) Method

RequestContinueDownload() public method

The request continue download.
public RequestContinueDownload ( ) : void
return void
        public void RequestContinueDownload()
        {
            Log.Debug(Tag,"RequestContinueDownload");

            if (this.Control == ControlAction.Paused)
            {
                this.Control = ControlAction.Run;
            }

            var fileIntent = new Intent(this, this.GetType());
            fileIntent.PutExtra(DownloaderServiceExtras.PendingIntent, this.pPendingIntent);
            this.StartService(fileIntent);
        }