Class FileUploadFailedEventArgs
Provides information about an FileUploadFailed event being raised.
Namespace: Syncfusion.Blazor.RichTextEditor
Assembly: Syncfusion.Blazor.dll
Syntax
public class FileUploadFailedEventArgs : Object
Constructors
FileUploadFailedEventArgs()
Declaration
public FileUploadFailedEventArgs()
Properties
File
Gets the details about upload file.
Declaration
public FileInfo File { get; }
Property Value
Type | Description |
---|---|
FileInfo | A FileInfo object representing the details about the uploaded file. |
Operation
Gets the file upload event operation.
Declaration
public string Operation { get; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
Response
Gets or sets the file upload event response.
Declaration
public ResponseEventArgs Response { get; set; }
Property Value
Type | Description |
---|---|
ResponseEventArgs | An instance of the ResponseEventArgs class representing the response of the file upload event. |
StatusText
Gets the upload file status.
Declaration
public string StatusText { get; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |