Skip to main content
Version: 3.5

UploadProgressEventArgs

Namespace: Wisej.Web

Assembly: Wisej.Framework (3.5.0.0)

Provides data for the Progress event.

public class UploadProgressEventArgs : EventArgs

Constructors

Instance memberUploadProgressEventArgs(loaded, total)

Initializes a new instance of the UploadProgressEventArgs class with the specified error message.

NameTypeDescription
loadedInt64The number of bytes transferred. This doesn't include headers and other overhead, but only the content itself.
totalInt64The total number of bytes of content that will be transferred. If the total size is unknown, this value is zero.

Properties

Instance memberLoaded

Int64: The number of bytes transferred.

Instance memberTotal

Int64: The total number of bytes of content that will be transferred.

Used By

NameDescription
UploadProgressEventHandlerRepresents the method that will handle the Progress event of a Upload control.