Storage Client Library for Windows Runtime (Version 7.0)

Microsoft.WindowsAzure.Storage.Queue

Gets or sets a value to indicate that MD5 validation will be disabled when downloading blobs.

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

Syntax

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

Property Value

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

Use true to disable MD5 validation; false to enable MD5 validation.

Return to top