PowerWEB File Upload for ASP.NET
UploadProgress Event
See Also  Send comments on this topic.
Dart.FileUpload Namespace > UploadManager Class : UploadProgress Event



Event raised during an upload operation at each interval defined by the PollingInterval property.

Syntax

Visual Basic (Declaration) 
<CategoryAttribute("Action")>
<DartDescriptionAttribute("Event raised during an upload operation at each interval defined by the PollingInterval property.")>
Public Event UploadProgress As UploadProgressEventHandler
Visual Basic (Usage)Copy Code
Dim instance As UploadManager
Dim handler As UploadProgressEventHandler
 
AddHandler instance.UploadProgress, handler
C# 
[CategoryAttribute("Action")]
[DartDescriptionAttribute("Event raised during an upload operation at each interval defined by the PollingInterval property.")]
public event UploadProgressEventHandler UploadProgress
C++/CLI 
[CategoryAttribute("Action")]
[DartDescriptionAttribute("Event raised during an upload operation at each interval defined by the PollingInterval property.")]
public:
event UploadProgressEventHandler^ UploadProgress

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.

PropertyDescription
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

Documentation Version 4.0.3
© 2012 Dart Communications. All Rights Reserved.