Azure.Storage.Files.DataLake.Models.PathContentInfo
PathContentInfo
namespace Azure.Storage.Files.DataLake.Models
{
public class PathContentInfo
{
public string ContentHash { get; }
public ETag ETag { get; }
public DateTimeOffset LastModified { get; }
public string AcceptRanges { get; }
public string CacheControl { get; }
public string ContentDisposition { get; }
public string ContentEncoding { get; }
public string ContentLanguage { get; }
public long ContentLength { get; }
public string ContentRange { get; }
public string ContentType { get; }
public IDictionary<string, string> Metadata { get; }
}
}