Azure.Storage.Files.DataLake.Models.FileDownloadDetails
Properties returned when downloading a File.
namespace Azure.Storage.Files.DataLake.Models
{
public class FileDownloadDetails
{
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 DateTimeOffset CopyCompletedOn { get; }
public string CopyStatusDescription { get; }
public string CopyId { get; }
public string CopyProgress { get; }
public Uri CopySource { get; }
public CopyStatus CopyStatus { get; }
public DataLakeLeaseDuration LeaseDuration { get; }
public DataLakeLeaseState LeaseState { get; }
public DataLakeLeaseStatus LeaseStatus { get; }
public string AcceptRanges { get; }
public bool IsServerEncrypted { get; }
public string EncryptionKeySha256 { get; }
public byte[] ContentHash { get; }
public DateTimeOffset CreatedOn { get; }
public string EncryptionContext { get; }
public IList<PathAccessControlItem> AccessControlList { get; }
}
}