menu

Blazor

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class UploadChangeEventArgs - Blazor API Reference | Syncfusion

    Show / Hide Table of Contents

    Class UploadChangeEventArgs

    Provides information about the ValueChange event callback.

    Inheritance
    System.Object
    UploadChangeEventArgs
    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 null if no files have been uploaded.

    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.

    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved