Class ActionCompleteEventArgs
Provides information about the OnActionComplete event callback.
Inheritance
Namespace: Syncfusion.Blazor.Inputs
Assembly: Syncfusion.Blazor.dll
Syntax
public class ActionCompleteEventArgs : Object
Remarks
This event is triggered after all selected files have been processed (either successfully uploaded or failed). It provides comprehensive information about the completed upload operation, including details of all files that were part of the upload batch.
Constructors
ActionCompleteEventArgs()
Declaration
public ActionCompleteEventArgs()
Properties
FileData
Gets or sets the list of selected files' details from the SfUploader component.
Declaration
public List<FileInfo> FileData { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<FileInfo> | A System.Collections.Generic.List<> containing the details of all files that were processed, or |
Remarks
This property contains comprehensive information about each file that was part of the upload operation, including file names, sizes, upload status, and any error information. It allows developers to review the results of the entire upload batch and take appropriate action based on the outcomes.