EnumUploadFileStatus
Describes the current status of a file in the Upload component. Use to determine file state for UI, logic, and error handling.
Definition
Namespace:Telerik.Blazor
Assembly:Telerik.Blazor.dll
Syntax:
public enum UploadFileStatus
Fields
Blank
The file is preloaded or in a blank state. Used for initializing file lists. Example: pre-populated file from server.
Failed
The file upload failed. Use to show error messages or retry options. Example: "MyFile.pdf" failed due to network error.
Paused
Selected
The file is selected by the user but not yet uploaded. Use to show pending uploads or enable upload actions. Example: "MyFile.pdf" is selected but not uploaded.
Uploaded
The file has been uploaded successfully. Use to show success messages or allow removal. Example: "MyFile.pdf" upload completed.
Uploading
The file is currently uploading. Use to display progress bars or cancel options. Example: "MyFile.pdf" is 50% uploaded.