New to Telerik UI for BlazorStart a free 30-day trial

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:

C#
public class UploadFileInfo : FileInfoBase

Inheritance: objectFileInfoBaseUploadFileInfo

Inherited Members FileInfoBase.IdFileInfoBase.NameFileInfoBase.SizeFileInfoBase.ExtensionFileInfoBase.InvalidExtensionFileInfoBase.InvalidMinFileSizeFileInfoBase.InvalidMaxFileSize...

Constructors

C#
public UploadFileInfo()

Properties

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

C#
public int Progress { get; set; }

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

C#
public UploadFileStatus Status { get; set; }