C# Class Amazon.S3.Transfer.UploadProgressArgs

Encapsulates the information needed to provide transfer progress to subscribers of the Put Object Event.
Inheritance: Amazon.S3.Model.TransferProgressArgs
Show file Open project: aws/aws-sdk-net Class Usage Examples

Private Properties

Property Type Description
UploadProgressArgs System

Public Methods

Method Description
UploadProgressArgs ( long incrementTransferred, long transferred, long total ) : System

The constructor takes the number of currently transferred bytes and the total number of bytes to be transferred

UploadProgressArgs ( long incrementTransferred, long transferred, long total, string filePath ) : System

The constructor takes the number of currently transferred bytes and the total number of bytes to be transferred

Private Methods

Method Description
UploadProgressArgs ( long incrementTransferred, long transferred, long total, long compensationForRetry, string filePath ) : System

The constructor takes the number of currently transferred bytes and the total number of bytes to be transferred

Method Details

UploadProgressArgs() public method

The constructor takes the number of currently transferred bytes and the total number of bytes to be transferred
public UploadProgressArgs ( long incrementTransferred, long transferred, long total ) : System
incrementTransferred long The how many bytes were transferred since last event.
transferred long The number of bytes transferred
total long The total number of bytes to be transferred
return System

UploadProgressArgs() public method

The constructor takes the number of currently transferred bytes and the total number of bytes to be transferred
public UploadProgressArgs ( long incrementTransferred, long transferred, long total, string filePath ) : System
incrementTransferred long The how many bytes were transferred since last event.
transferred long The number of bytes transferred
total long The total number of bytes to be transferred
filePath string The file being uploaded
return System