GetUploadPartsItemRequest
The GetUploadPartsItemRequest class represents a request to retrieve information about a specific part of a file being uploaded.
This class encapsulates the necessary information for managing partial file uploads, including the file's secret, length, and path information.
Properties
| Name | Description |
|---|---|
| Length | Gets the length of the file being uploaded. |
| SecretKey | Gets the encrypted secret key for the upload part. |
| Path | Gets or sets the path where the file will be uploaded. |
| DecryptedSecret | Gets the decrypted object secret information. |
Constructors
| Name | Description |
|---|---|
| GetUploadPartsItemRequest() | Initializes a new instance of the GetUploadPartsItemRequest class. |
| GetUploadPartsItemRequest(secretKey, length, path) | Initializes a new instance of the GetUploadPartsItemRequest class with the specified secret key, file length, and path. |