C# Class Amazon.S3.Transfer.UploadDirectoryProgressArgs

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

Public Methods

Method Description
UploadDirectoryProgressArgs ( int numberOfFilesUploaded, int totalNumberOfFiles, string currentFile, long transferredBytesForCurrentFile, long totalNumberOfBytesForCurrentFile ) : System

Constructs a new instance of UploadDirectoryProgressArgs.

Method Details

UploadDirectoryProgressArgs() public method

Constructs a new instance of UploadDirectoryProgressArgs.
public UploadDirectoryProgressArgs ( int numberOfFilesUploaded, int totalNumberOfFiles, string currentFile, long transferredBytesForCurrentFile, long totalNumberOfBytesForCurrentFile ) : System
numberOfFilesUploaded int /// The number of files uploaded. ///
totalNumberOfFiles int /// The total number of files to upload. ///
currentFile string /// The current file ///
transferredBytesForCurrentFile long /// The number of transferred bytes for current file. ///
totalNumberOfBytesForCurrentFile long /// The size of the current file in bytes. ///
return System