Class UploadChangeEventArgs
Provides information about the ValueChange event callback.
Inheritance
Namespace: Syncfusion.Blazor.Inputs
Assembly: Syncfusion.Blazor.dll
Syntax
public class UploadChangeEventArgs : Object
Remarks
This event is triggered when changes occur in the uploaded file list by selecting or dropping files. It provides access to the complete list of files that have been processed by the uploader component, enabling developers to implement custom handling logic, file validation, and post-upload processing. This event is essential for scenarios where immediate access to uploaded file data is required.
Constructors
UploadChangeEventArgs()
Declaration
public UploadChangeEventArgs()
Properties
Files
Gets or sets the list of uploaded files' details from the SfUploader component.
Declaration
public List<UploadFiles> Files { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<UploadFiles> | A System.Collections.Generic.List<> containing the details of all uploaded files, or |
Remarks
This property contains comprehensive information about all files that have been uploaded through the uploader component. Each file in the list includes both metadata (through the FileInfo property) and access to the actual file content (through the File property). This enables complete processing of uploaded files, including validation, storage operations, and content manipulation.