Class UploadProgressArgs
Supplies information about a Progress event that is being raised.
Inherited Members
Namespace: Radzen
Assembly: Radzen.Blazor.dll
Syntax
public class UploadProgressArgs
Constructors
UploadProgressArgs()
Supplies information about a Progress event that is being raised.
Declaration
public UploadProgressArgs()
Properties
Cancel
Gets or sets a flag indicating whether the underlying XMLHttpRequest should be aborted.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
bool |
Files
Gets a collection of files that are being uploaded.
Declaration
public IEnumerable<FileInfo> Files { get; set; }
Property Value
Type | Description |
---|---|
IEnumerable<FileInfo> |
Loaded
Gets or sets the number of bytes that have been uploaded.
Declaration
public long Loaded { get; set; }
Property Value
Type | Description |
---|---|
long |
Progress
Gets the progress as a percentage value (from 0
to 100
).
Declaration
public int Progress { get; set; }
Property Value
Type | Description |
---|---|
int |
Total
Gets the total number of bytes that need to be uploaded.
Declaration
public long Total { get; set; }
Property Value
Type | Description |
---|---|
long |