Class BlobDownloadInfo
The details and Content returned from downloading a blob
Namespace: Azure.Storage.Blobs.Models
Assembly: Azure.Storage.Blobs.dll
Syntax
public class BlobDownloadInfo : IDisposable
Properties
BlobType
The blob's type.
Declaration
public Azure.Storage.Blobs.Models.BlobType BlobType { get; }
Property Value
BlobType
|
Content
ContentHash
If the blob has an MD5 hash and this operation is to read the full blob, this response header is returned so that the client can check for message content integrity.
Declaration
public byte[] ContentHash { get; }
Property Value
Byte[]
|
ContentLength
The number of bytes present in the response body.
Declaration
public long ContentLength { get; }
Property Value
Int64
|
ContentType
The media type of the body of the response. For Download Blob this is 'application/octet-stream'
Declaration
public string ContentType { get; }
Property Value
String
|
Details
Details returned when downloading a Blob
Declaration
public Azure.Storage.Blobs.Models.BlobDownloadDetails Details { get; }
Property Value
BlobDownloadDetails
|
Methods
Dispose()
Disposes the BlobDownloadInfo by calling Dispose on the underlying Content stream.
Declaration
public void Dispose ();