<PackageReference Include="Azure.Storage.Blobs" Version="12.26.0" />

Azure.Storage.Blobs.Models.BlobDownloadDetails

public class BlobDownloadDetails
Details returned when downloading a Blob.
namespace Azure.Storage.Blobs.Models { public class BlobDownloadDetails { public BlobType BlobType { get; } public long ContentLength { get; } public string ContentType { get; } public byte[] ContentHash { get; } public DateTimeOffset LastModified { get; } public IDictionary<string, string> Metadata { get; } public string ContentRange { get; } public ETag ETag { get; } public string ContentEncoding { get; } public string CacheControl { get; } public string ContentDisposition { get; } public string ContentLanguage { get; } public long BlobSequenceNumber { get; } public DateTimeOffset CopyCompletedOn { get; } public string CopyStatusDescription { get; } public string CopyId { get; } public string CopyProgress { get; } public Uri CopySource { get; } public CopyStatus CopyStatus { get; } public LeaseDurationType LeaseDuration { get; } public LeaseState LeaseState { get; } public LeaseStatus LeaseStatus { get; } public string AcceptRanges { get; } public int BlobCommittedBlockCount { get; } public bool IsServerEncrypted { get; } public string EncryptionKeySha256 { get; } public string EncryptionScope { get; } public byte[] BlobContentHash { get; } public long TagCount { get; } public string VersionId { get; } public bool IsSealed { get; } public IList<ObjectReplicationPolicy> ObjectReplicationSourceProperties { get; } public string ObjectReplicationDestinationPolicyId { get; } public DateTimeOffset LastAccessed { get; } public BlobImmutabilityPolicy ImmutabilityPolicy { get; } public bool HasLegalHold { get; } public DateTimeOffset CreatedOn { get; } public BlobDownloadDetails(); } }