Skip to main content

UploadPart

Represents a part of a file being uploaded in chunks to the document management system.

This class encapsulates information about a specific chunk of data during a multi-part upload process, including its position in the file and the URL where it should be uploaded.

Properties

NameDescription
IdGets the identifier of the upload part.
EndByteGets the ending byte position of this upload part in the complete file.
UrlGets the URL where this upload part should be sent.
StartByteGets the starting byte position of this upload part in the complete file.

Constructors

NameDescription
UploadPart(id, startByte, endByte, url)Initializes a new instance of the UploadPart class with the specified part information.