Class FileUploadingEventArgs
Provides information about an FileUploading event being raised.
Namespace: Syncfusion.Blazor.RichTextEditor
Assembly: Syncfusion.Blazor.dll
Syntax
public class FileUploadingEventArgs : Object
Constructors
FileUploadingEventArgs()
Declaration
public FileUploadingEventArgs()
Properties
Cancel
Gets or sets whether the file upload action should be canceled or not.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
CurrentRequest
Gets or sets the XMLHttpRequest instance that is associated with the upload action.
Declaration
public object CurrentRequest { get; set; }
Property Value
Type | Description |
---|---|
System.Object | An instance of the XMLHttpRequest class representing the current upload request. |
CustomFormData
Gets or set the additional data in key and value pair format that will be submitted to the upload action.
Declaration
public object CustomFormData { get; set; }
Property Value
Type | Description |
---|---|
System.Object | An object representing the additional data to be submitted to the upload action. |
FilesData
Gets the list of file will upload.
Declaration
public List<FileInfo> FilesData { get; set; }
Property Value
Type |
---|
System.Collections.Generic.List<FileInfo> |