constructor(fileCount, currentFileName, currentFileContentLength, currentFileUploadedContentLength, currentFileProgress, totalContentLength, uploadedContentLength, progress) Constructor
Initializes a new instance of the ASPxClientUploadControlUploadingProgressChangedEventArgs class.
Declaration
constructor(
fileCount: number,
currentFileName: string,
currentFileContentLength: number,
currentFileUploadedContentLength: number,
currentFileProgress: number,
totalContentLength: number,
uploadedContentLength: number,
progress: number
)
Parameters
Name | Type | Description |
---|---|---|
fileCount | number | The number of the files selected for upload. |
currentFileName | string | Gets the name of the file currently being uploaded. |
currentFileContentLength | number | The content length of the currently uploaded file. |
currentFileUploadedContentLength | number | The content length of the current file already uploaded to the server. |
currentFileProgress | number | The position of the current file upload progress. |
totalContentLength | number | The content length of the files selected for upload. |
uploadedContentLength | number | The content length of the files already uploaded to the server. |
progress | number | The current position of total upload progress. |
Remarks
For internal use only.
See Also