Event raised during an upload operation at each interval defined by the
PollingInterval property.
Syntax
Event Data
The event handler receives an argument of type UploadProgressEventArgs containing data related to this event. The following UploadProgressEventArgs properties provide information specific to this event.
Property | Description |
---|
AverageTransferSpeed |
The average transfer speed for the upload operation.
|
BytesTransferred |
The total number of bytes that have been transferred during the upload operation.
|
ControlID | An unique identifier for the Upload control used to select the currently transferring file. |
CurrentTransferSpeed |
The current transfer speed of the upload operation.
|
Data |
The newly uploaded data for the currently transferring file.
|
ElapsedTime |
The elapsed time for the upload operation.
|
EstimatedFileSize |
The estimated size of the currently transferring file.
|
EstimatedRemainingTime |
The estimated time remaining for the upload operation.
|
FileBytesUploaded |
The number of bytes transferred thus far for the current file.
|
FileName |
The name of the currently transferring file.
|
FilesInRequest |
The number of files requested to be uploaded.
|
FileSize |
The size of the currently transferring file.
|
FilesTransferred |
The number of files that have been completely transferred.
|
RequestSize |
The size of the Post message requesting the upload operation.
|
UniqueID |
An unique identifier for the currently transferring file.
|
Requirements
Target Platforms: Microsoft .NET Framework 2.0
See Also