BlobRequestOptions.StoreBlobContentMD5 Property

Windows Runtime Azure Storage Client Library

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)

Usage

Visual Basic
Dim instance As BlobRequestOptions
Dim value As Nullable(Of Boolean)

value = instance.StoreBlobContentMD5

instance.StoreBlobContentMD5 = value

Syntax

Visual Basic
Public Property StoreBlobContentMD5 As Nullable(Of Boolean)
C#
public Nullable<bool> StoreBlobContentMD5 { get; set; }
C++
public:
property Nullable<bool> StoreBlobContentMD5 {
	Nullable<bool> get ();
	void set (Nullable<bool> value);
}
J#
/** @property */
public Nullable<boolean> get_StoreBlobContentMD5 ()

/** @property */
public void set_StoreBlobContentMD5 (Nullable<boolean> value)
JScript
public function get StoreBlobContentMD5 () : Nullable<boolean>

public function set StoreBlobContentMD5 (value : Nullable<boolean>)

Property Value

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

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows Vista, Windows 7, Windows Server 2008, Windows 8.1, Windows Server 2012 R2, Windows 8 and Windows Server 2012

Target Platforms

See Also