你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

BlobDownloadOptions Class

Definition

Optional parameters for downloading a range of a blob.

public class BlobDownloadOptions
type BlobDownloadOptions = class
Public Class BlobDownloadOptions
Inheritance
BlobDownloadOptions

Constructors

BlobDownloadOptions()

Properties

Conditions

Optional BlobRequestConditions to add conditions on downloading this blob.

ProgressHandler

Optional IProgress<T> to provide progress updates about data transfers.

Range

If provided, only download the bytes of the blob in the specified range. If not provided, download the entire blob.

TransferValidation

Optional override settings for this client's TransferValidation settings. Set AutoValidateChecksum to false if you would like to skip SDK checksum validation and validate the checksum found in the Response object yourself. Range must be provided explicitly, stating a range withing Azure Storage size limits for requesting a transactional hash. See the REST documentation for range limitation details.

Applies to