Class UploadingEventArgs
Provides information about the OnChunkUploadStart and OnUploadStart events callback.
Inheritance
System.Object
UploadingEventArgs
Namespace: Syncfusion.Blazor.Inputs
Assembly: Syncfusion.Blazor.dll
Syntax
public class UploadingEventArgs : Object
Constructors
UploadingEventArgs()
Declaration
public UploadingEventArgs()
Properties
Cancel
Gets or sets whether the file upload action has been canceled or not.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | System.Boolean |
ChunkSize
Gets the chunk size of the failure file in bytes.
Declaration
public double ChunkSize { get; set; }
Property Value
Type | Description |
---|---|
System.Double | System.Boolean |
CurrentChunkIndex
Gets the index of the current chunk if the chunk upload is enabled.
Declaration
public double CurrentChunkIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Double | System.Boolean |
CurrentRequest
Gets the XMLHttpRequest instance that is associated with the upload action.
Declaration
public object CurrentRequest { get; set; }
Property Value
Type | Description |
---|---|
System.Object | Details of an XMLHttpRequest object. |
CustomFormData
Gets or sets the additional data in key and value pair format to be submitted to the upload action.
Declaration
public object CustomFormData { get; set; }
Property Value
Type | Description |
---|---|
System.Object | Key and value pair object. |
FileData
Gets the list of the file details that will be uploaded.
Declaration
public FileInfo FileData { get; set; }
Property Value
Type | Description |
---|---|
FileInfo |