Skip to main content

UploadPart Properties

An object defining properties for the UploadPart class.

Id

Gets the identifier of the upload part.

Type: int

This property contains the sequential identifier of the upload part, used to maintain the correct order of chunks during the upload process.


EndByte

Gets the ending byte position of this upload part in the complete file.

Type: long

This property indicates the offset where this chunk's data ends in the complete file. Together with StartByte, it defines the range of bytes this chunk represents.


Url

Gets the URL where this upload part should be sent.

Type: string

This property contains the destination URL where the chunk of data should be uploaded. Each part may have a different URL to enable parallel uploads and optimize performance.


StartByte

Gets the starting byte position of this upload part in the complete file.

Type: long

This property indicates the offset from the beginning of the file where this chunk's data begins. It is used to ensure proper positioning of the chunk during file assembly.