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 |
---|---|
SecretKey | Gets the encrypted secret key for the upload part. |
DecryptedSecret | Gets the decrypted object secret information. |
Length | Gets the length of the file being uploaded. |
Path | Gets or sets the path where the file will be uploaded. |
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. |