Class UploadProgressArgs
Supplies information about a Progress event that is being raised.
Inheritance
System.Object
UploadProgressArgs
Namespace: Radzen
Assembly: Radzen.Blazor.dll
Syntax
public class UploadProgressArgs : object
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 |
---|---|
System.Boolean |
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 |
---|---|
System.Int64 |
Progress
Gets the progress as a percentage value (from 0
to 100
).
Declaration
public int Progress { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Total
Gets the total number of bytes that need to be uploaded.
Declaration
public long Total { get; set; }
Property Value
Type | Description |
---|---|
System.Int64 |