Storage Client Library for Windows Runtime (Version 7.0)

Microsoft.WindowsAzure.Storage.Queue

Gets or sets a value to indicate that an MD5 hash will be calculated and stored when uploading a blob.

Namespace:   Microsoft.WindowsAzure.Storage.Blob
Assembly:  Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)

Syntax

 
public Nullable<bool> StoreBlobContentMD5 { get; set; }
 
public:
property Nullable<bool> StoreBlobContentMD5 {
	Nullable<bool> get();
	void set(Nullable<bool> value);
}
 
member StoreBlobContentMD5 : Nullable<bool> with get, set
 
Public Property StoreBlobContentMD5 As Nullable(OfBoolean)

Property Value

Type: System.Nullable<Boolean>System::Nullable<Boolean>System.Nullable<Boolean>System.Nullable(Of Boolean)

Use true to calculate and store an MD5 hash when uploading a blob; otherwise, false.

Remarks

This property is not supported for CloudAppendBlob.

Return to top