IFileUploadRangeOptions interface
Properties
contentMD5 | An MD5 hash of the content. This hash is used to verify the integrity of the data during transport. When the Content-MD5 header is specified, the File service compares the hash of the content that has arrived with the header value that was sent. If the two hashes do not match, the operation will fail with error code 400 (Bad Request). |
progress | Progress updating event handler. |
Property Details
contentMD5
An MD5 hash of the content. This hash is used to verify the integrity of the data during transport. When the Content-MD5 header is specified, the File service compares the hash of the content that has arrived with the header value that was sent. If the two hashes do not match, the operation will fail with error code 400 (Bad Request).
contentMD5?: Uint8Array
Property Value
Uint8Array
progress
Progress updating event handler.
progress?: undefined | (progress: TransferProgressEvent) => void
Property Value
undefined | (progress: TransferProgressEvent) => void
Azure SDK for JavaScript