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

DownloadCompletedEventArgs() public method

public DownloadCompletedEventArgs ( FileInfo downloadedFile, System.Int64 downloadedSize, System.Int64 totalSize, System.TimeSpan totalTime, Exception ex ) : System
downloadedFile System.IO.FileInfo
downloadedSize System.Int64
totalSize System.Int64
totalTime System.TimeSpan
ex System.Exception
return System
        public DownloadCompletedEventArgs(
            FileInfo downloadedFile, Int64 downloadedSize,
            Int64 totalSize, TimeSpan totalTime, Exception ex)
        {
            this.DownloadedFile = downloadedFile;
            this.DownloadedSize = downloadedSize;
            this.TotalSize = totalSize;
            this.TotalTime = totalTime;
            this.Error = ex;
        }
DownloadCompletedEventArgs