Table of Contents

Class UploadProgressArgs

Namespace
Radzen
Assembly
Radzen.Blazor.dll

Supplies information about a Progress event that is being raised.

public class UploadProgressArgs
Inheritance
UploadProgressArgs
Inherited Members

Constructors

UploadProgressArgs()

public UploadProgressArgs()

Properties

Cancel

Gets or sets a flag indicating whether the underlying XMLHttpRequest should be aborted.

public bool Cancel { get; set; }

Property Value

bool

Files

Gets a collection of files that are being uploaded.

public IEnumerable<FileInfo> Files { get; set; }

Property Value

IEnumerable<FileInfo>

Loaded

Gets or sets the number of bytes that have been uploaded.

public long Loaded { get; set; }

Property Value

long

Progress

Gets the progress as a percentage value (from 0 to 100).

public int Progress { get; set; }

Property Value

int

Total

Gets the total number of bytes that need to be uploaded.

public long Total { get; set; }

Property Value

long