Skip to main content
A newer version of this page is available. .

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

Gets the number of the files selected for upload.

currentFileName string

Gets the name of the file currently being uploaded.

currentFileContentLength number

Gets the content length of the currently uploaded file.

currentFileUploadedContentLength number

Gets the content length of the current file already uploaded to the server.

currentFileProgress number

Gets the position of the current file upload progress.

totalContentLength number

Gets the content length of the files selected for upload.

uploadedContentLength number

Gets the content length of the files already uploaded to the server.

progress number

Gets the current position of total upload progress.

Remarks

For internal use only.

See Also