menu

Blazor

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

    Show / Hide Table of Contents

    Class FileUploadFailedEventArgs

    Represents the details of a FileUploadFailed event.

    Inheritance
    System.Object
    FileUploadFailedEventArgs
    ImageFailedEventArgs
    Namespace: Syncfusion.Blazor.RichTextEditor
    Assembly: Syncfusion.Blazor.dll
    Syntax
    public class FileUploadFailedEventArgs : Object
    Remarks

    This class contains details about a file upload failure, including file information and error status.

    Constructors

    FileUploadFailedEventArgs()

    Declaration
    public FileUploadFailedEventArgs()

    Properties

    File

    Gets information about the uploaded file.

    Declaration
    public FileInfo File { get; }
    Property Value
    Type Description
    FileInfo

    A FileInfo object containing the uploaded file's details.

    Remarks

    The File property provides specifics about the file that failed to upload.

    Operation

    Gets the operation type of the file upload event.

    Declaration
    public string Operation { get; }
    Property Value
    Type Description
    System.String

    A string indicating the upload operation type.

    Remarks

    The Operation property helps identify the type of upload process that failed.

    Response

    Gets or sets the response details of the file upload event.

    Declaration
    public ResponseEventArgs Response { get; set; }
    Property Value
    Type Description
    ResponseEventArgs

    An instance of ResponseEventArgs containing the upload response.

    Remarks

    The Response property captures the HTTP-style response information for the failed upload.

    StatusText

    Gets the status text or message of the upload failure.

    Declaration
    public string StatusText { get; set; }
    Property Value
    Type Description
    System.String

    A string that describes the upload status.

    Remarks

    The StatusText property provides a textual description of the upload status.

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