SDownload.Framework.Streams.SCSetStream.SetItemReportProxy.Close C# (CSharp) Method

Close() public method

Closes the set item being tracked, sets the progress to -1 if being closed before download is complete
public Close ( ) : void
return void
            public override void Close()
            {
                // Set the download for this item to 100% 
                if (_percentage != 100)
                    _master._percentDownloaded += (100 - _percentage);
            }
        }
SCSetStream.SetItemReportProxy