Table of Contents

Class UploadProgressArgs

Namespace
Amazon.S3.Transfer
Assembly
AWSSDK.S3.dll

Encapsulates the information needed to provide transfer progress to subscribers of the Put Object Event.

public class UploadProgressArgs : TransferProgressArgs
Inheritance
UploadProgressArgs
Inherited Members

Constructors

UploadProgressArgs(long, long, long)

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)

Parameters

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

UploadProgressArgs(long, long, long, string)

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)

Parameters

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

Properties

FilePath

Gets the FilePath.

public string FilePath { get; }

Property Value

string