Class UploadingEventArgs
Inheritance
System.Object
UploadingEventArgs
Implements
System.IEquatable<UploadingEventArgs>
Namespace: Syncfusion.Blazor.Inputs
Assembly: Syncfusion.Blazor.dll
Syntax
public class UploadingEventArgs : Object, IEquatable<UploadingEventArgs>
Constructors
UploadingEventArgs()
Declaration
public UploadingEventArgs()
Properties
Cancel
Defines whether the current action can be prevented.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
ChunkSize
Returns the chunk size in bytes if the chunk upload is enabled.
Declaration
public double ChunkSize { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
CurrentChunkIndex
Returns the index of current chunk if the chunk upload is enabled.
Declaration
public double CurrentChunkIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
FileData
Returns the list of files that will be uploaded.
Declaration
public FileInfo FileData { get; set; }
Property Value
Type | Description |
---|---|
FileInfo |
Methods
Equals(UploadingEventArgs)
Declaration
public bool Equals(UploadingEventArgs uploadingEventArgs)
Parameters
Type | Name | Description |
---|---|---|
UploadingEventArgs | uploadingEventArgs |
Returns
Type | Description |
---|---|
System.Boolean |
Implements
System.IEquatable<>