GetDownloadUrlRequest
Represents a request to obtain a download URL for a file in the document management system.
This class encapsulates the necessary security keys, file information, and options required to generate a download URL for a file. It inherits from BaseRequest to provide common request functionality and includes automatic decryption of security keys through the DecryptData attribute.
Properties
| Name | Description |
|---|---|
| DecryptedObjectSecret | Gets the decrypted object secret information. |
| AddRecent | Gets whether to add the file to the recent items list. |
| FileName | Gets the name of the file to be downloaded. |
| SecretKey | Gets the encrypted secret key used for object security. |
| VersionSecretKey | Gets the encrypted secret key for version security. |
| Path | Gets the path of the file in the document management system. |
| DecryptedVersionSecret | Gets the decrypted version secret information. |
Constructors
| Name | Description |
|---|---|
| GetDownloadUrlRequest() | Initializes a new instance of the GetDownloadUrlRequest class. |
| GetDownloadUrlRequest(secretKey, versionSecretKey, fileName, addRecent, path) | Initializes a new instance of the GetDownloadUrlRequest class with the specified security keys and file information. |