Class SuccessEventArgs
Provides information about the OnChunkSuccess and Success events callback.
Namespace: Syncfusion.Blazor.Inputs
Assembly: Syncfusion.Blazor.dll
Syntax
public class SuccessEventArgs : Object
Constructors
SuccessEventArgs()
Declaration
public SuccessEventArgs()
Properties
ChunkIndex
Gets the uploaded file's chunk index.
Declaration
public double ChunkIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Double | System.Double |
ChunkSize
Gets the chunk size of the uploaded file in bytes.
Declaration
public double ChunkSize { get; set; }
Property Value
Type | Description |
---|---|
System.Double | System.Double |
E
Returns the original event arguments.
Declaration
public object E { get; set; }
Property Value
Type |
---|
System.Object |
Event
Returns the original event arguments.
Declaration
public object Event { get; set; }
Property Value
Type | Description |
---|---|
System.Object | The original event arguments for the current event. |
File
Gets the details about the uploaded file.
Declaration
public FileInfo File { get; set; }
Property Value
Type | Description |
---|---|
FileInfo |
Operation
Gets the upload event operation.
Declaration
public string Operation { get; set; }
Property Value
Type | Description |
---|---|
System.String | System.String |
Response
Gets the details about the current response for the uploaded files.
Declaration
public ResponseEventArgs Response { get; set; }
Property Value
Type | Description |
---|---|
ResponseEventArgs |
StatusText
Gets or sets the upload files status text.
Declaration
public string StatusText { get; set; }
Property Value
Type | Description |
---|---|
System.String | System.String |
TotalChunk
Gets the total number of chunk count.
Declaration
public double TotalChunk { get; set; }
Property Value
Type | Description |
---|---|
System.Double | System.Double |