SDownload.Framework.Streams.SCSetStream.SetItemReportProxy.UpdateProgress C# (CSharp) Метод

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

Stores the progress for the track and updates the master progress
public UpdateProgress ( int percentage ) : void
percentage int The percentage complete the track ownlaod is
Результат void
            public override void UpdateProgress(int percentage)
            {
                _percentage = percentage;
                _master._percentDownloaded += percentage;
                _master.View.UpdateProgress(_master._percentDownloaded/_totalPercentage);
            }
SCSetStream.SetItemReportProxy