Package version:

Interface BlobHTTPHeaders

Parameter group

interface BlobHTTPHeaders {
    blobCacheControl?: string;
    blobContentDisposition?: string;
    blobContentEncoding?: string;
    blobContentLanguage?: string;
    blobContentMD5?: any;
    blobContentType?: string;
}

Properties

blobCacheControl?: string

Optional. Sets the blob's cache control. If specified, this property is stored with the blob and returned with a read request.

blobContentDisposition?: string

Optional. Sets the blob's Content-Disposition header.

blobContentEncoding?: string

Optional. Sets the blob's content encoding. If specified, this property is stored with the blob and returned with a read request.

blobContentLanguage?: string

Optional. Set the blob's content language. If specified, this property is stored with the blob and returned with a read request.

blobContentMD5?: any

Optional. An MD5 hash of the blob content. Note that this hash is not validated, as the hashes for the individual blocks were validated when each was uploaded.

blobContentType?: string

Optional. Sets the blob's content type. If specified, this property is stored with the blob and returned with a read request.