Amazon.S3.Transfer.DownloadDirectoryProgressArgs.DownloadDirectoryProgressArgs C# (CSharp) Method

DownloadDirectoryProgressArgs() public method

Constructs a new instance of DownloadDirectoryProgressArgs.
public DownloadDirectoryProgressArgs ( int numberOfFilesDownloaded, int totalNumberOfFiles, string currentFile, long transferredBytesForCurrentFile, long totalNumberOfBytesForCurrentFile ) : System
numberOfFilesDownloaded int /// The number of files downloaded. ///
totalNumberOfFiles int /// The total number of files to download. ///
currentFile string /// The current file being downloaded ///
transferredBytesForCurrentFile long /// The number of transferred bytes for the current file. ///
totalNumberOfBytesForCurrentFile long /// The size of the current file in bytes. ///
return System
        public DownloadDirectoryProgressArgs(int numberOfFilesDownloaded, int totalNumberOfFiles,
            string currentFile, long transferredBytesForCurrentFile, long totalNumberOfBytesForCurrentFile)
        {
            this._numberOfFilesDownloaded = numberOfFilesDownloaded;
            this._totalNumberOfFiles = totalNumberOfFiles;
            this._currentFile = currentFile;
            this._transferredBytesForCurrentFile = transferredBytesForCurrentFile;
            this._totalNumberOfBytesForCurrentFile = totalNumberOfBytesForCurrentFile;
        }
DownloadDirectoryProgressArgs