Class FileUploadFailedEventArgs
Represents the details of a FileUploadFailed event.
Namespace: Syncfusion.Blazor.RichTextEditor
Assembly: Syncfusion.Blazor.dll
Syntax
public class FileUploadFailedEventArgs : Object
Remarks
This class contains details about a file upload failure, including file information and error status.
Constructors
FileUploadFailedEventArgs()
Declaration
public FileUploadFailedEventArgs()
Properties
File
Gets information about the uploaded file.
Declaration
public FileInfo File { get; }
Property Value
Remarks
The File property provides specifics about the file that failed to upload.
Operation
Gets the operation type of the file upload event.
Declaration
public string Operation { get; }
Property Value
Type | Description |
---|---|
System.String | A string indicating the upload operation type. |
Remarks
The Operation property helps identify the type of upload process that failed.
Response
Gets or sets the response details of the file upload event.
Declaration
public ResponseEventArgs Response { get; set; }
Property Value
Type | Description |
---|---|
ResponseEventArgs | An instance of ResponseEventArgs containing the upload response. |
Remarks
The Response property captures the HTTP-style response information for the failed upload.
StatusText
Gets the status text or message of the upload failure.
Declaration
public string StatusText { get; set; }
Property Value
Type | Description |
---|---|
System.String | A string that describes the upload status. |
Remarks
The StatusText property provides a textual description of the upload status.