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