Class
UploadFileInfo

Represents a file managed by the Upload component, including progress and status. Use to track upload state, progress, and errors for each file.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

cs-api-definition
public class UploadFileInfo : FileInfoBase

Inheritance: objectFileInfoBaseUploadFileInfo

Constructors

UploadFileInfo()

Declaration

cs-api-definition
public UploadFileInfo()

Properties

Progress

Indicates 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

Status

The current status of the file in the upload process. Example: Uploading or Failed.

Declaration

cs-api-definition
public UploadFileStatus Status { get; set; }

Property Value

UploadFileStatus