Azure.Storage.Blobs.Models.BlobItemProperties
Properties of a blob.
namespace Azure.Storage.Blobs.Models
{
public class BlobItemProperties
{
public DateTimeOffset? LastModified { get; }
public long? ContentLength { get; }
public string ContentType { get; }
public string ContentEncoding { get; }
public string ContentLanguage { get; }
public byte[] ContentHash { get; }
public string ContentDisposition { get; }
public string CacheControl { get; }
public long? BlobSequenceNumber { get; }
public BlobType? BlobType { get; }
public LeaseStatus? LeaseStatus { get; }
public LeaseState? LeaseState { get; }
public LeaseDurationType? LeaseDuration { get; }
public string CopyId { get; }
public CopyStatus? CopyStatus { get; }
public Uri CopySource { get; }
public string CopyProgress { get; }
public string CopyStatusDescription { get; }
public bool? ServerEncrypted { get; }
public bool? IncrementalCopy { get; }
public string DestinationSnapshot { get; }
public int? RemainingRetentionDays { get; }
public AccessTier? AccessTier { get; }
public bool AccessTierInferred { get; }
public ArchiveStatus? ArchiveStatus { get; }
public string CustomerProvidedKeySha256 { get; }
public string EncryptionScope { get; }
public long? TagCount { get; }
public DateTimeOffset? ExpiresOn { get; }
public bool? IsSealed { get; }
public RehydratePriority? RehydratePriority { get; }
public DateTimeOffset? LastAccessedOn { get; }
public ETag? ETag { get; }
public DateTimeOffset? CreatedOn { get; }
public DateTimeOffset? CopyCompletedOn { get; }
public DateTimeOffset? DeletedOn { get; }
public DateTimeOffset? AccessTierChangedOn { get; }
public BlobImmutabilityPolicy ImmutabilityPolicy { get; }
public bool HasLegalHold { get; }
}
}