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
Name | Description |
---|---|
Id | Gets the identifier of the upload part. |
EndByte | Gets the ending byte position of this upload part in the complete file. |
Url | Gets the URL where this upload part should be sent. |
StartByte | Gets the starting byte position of this upload part in the complete file. |
Constructors
Name | Description |
---|---|
UploadPart(id, startByte, endByte, url) | Initializes a new instance of the UploadPart class with the specified part information. |