C# Class Amazon.S3.Transfer.DownloadDirectoryProgressArgs

Encapsulates the information needed to provide transfer progress to subscribers of the DownloadDirectory event.
Inheritance: System.EventArgs
Show file Open project: scopely/aws-sdk-net Class Usage Examples

Public Methods

Method Description
DownloadDirectoryProgressArgs ( int numberOfFilesDownloaded, int totalNumberOfFiles, string currentFile, long transferredBytesForCurrentFile, long totalNumberOfBytesForCurrentFile ) : System

Constructs a new instance of DownloadDirectoryProgressArgs.

ToString ( ) : string

Method Details

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

ToString() public method

public ToString ( ) : string
return string