Class
UploadProgressEventArgs

Provides event data for the Progress event, fired as a file uploads. Use to update progress bars or UI. Example: args.Progress = 50 for 50% uploaded.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

cs-api-definition
public class UploadProgressEventArgs : UploadEventArgsBase

Inheritance: objectUploadEventArgsBaseUploadProgressEventArgs

Constructors

UploadProgressEventArgs()

Declaration

cs-api-definition
public UploadProgressEventArgs()

Properties

Progress

The upload progress as a percentage (0-100). Example: 75 means the file is 75% uploaded.

Declaration

cs-api-definition
public int Progress { get; set; }

Property Value

int