Azure.Storage.Files.DataLake.Models.PathHttpHeaders
Standard HTTP properties supported by paths.
These properties are represented as standard HTTP headers use standard
names, as specified in the Header Field Definitions section 14 of the
HTTP/1.1 protocol specification.
For more information, see
Setting and retrieving properties and metadata for service resources.
namespace Azure.Storage.Files.DataLake.Models
{
public class PathHttpHeaders
{
public string ContentType { get; set; }
public byte[] ContentHash { get; set; }
public string ContentEncoding { get; set; }
public string ContentLanguage { get; set; }
public string ContentDisposition { get; set; }
public string CacheControl { get; set; }
public PathHttpHeaders();
}
}
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; }
}
}