Class UploadProgressArgs
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
longThe how many bytes were transferred since last event.
transferred
longThe number of bytes transferred
total
longThe 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
longThe how many bytes were transferred since last event.
transferred
longThe number of bytes transferred
total
longThe total number of bytes to be transferred
filePath
stringThe file being uploaded
Properties
FilePath
Gets the FilePath.
public string FilePath { get; }