Class BeforeUploadEventArgs
Inheritance
System.Object
BeforeUploadEventArgs
Implements
System.IEquatable<BeforeUploadEventArgs>
Namespace: Syncfusion.Blazor.Inputs
Assembly: Syncfusion.Blazor.dll
Syntax
public class BeforeUploadEventArgs : Object, IEquatable<BeforeUploadEventArgs>
Constructors
BeforeUploadEventArgs()
Declaration
public BeforeUploadEventArgs()
Properties
Cancel
Defines whether the current action can be prevented.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
CurrentRequest
Returns the XMLHttpRequest instance that is associated with upload action.
Declaration
public object CurrentRequest { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
CustomFormData
Defines the additional data in key and value pair format that will be submitted to the upload action.
Declaration
public object CustomFormData { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
FilesData
Returns the list of uploading files.
Declaration
public List<FileInfo> FilesData { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<FileInfo> |
Methods
Equals(BeforeUploadEventArgs)
Declaration
public bool Equals(BeforeUploadEventArgs beforeUploadEventArgs)
Parameters
Type | Name | Description |
---|---|---|
BeforeUploadEventArgs | beforeUploadEventArgs |
Returns
Type | Description |
---|---|
System.Boolean |
Implements
System.IEquatable<>