BlobRequestOptions.UseTransactionalMD5 Property

Windows Runtime Azure Storage Client Library

Gets or sets a value to calculate and send/validate content MD5 for transactions.

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.UseTransactionalMD5

instance.UseTransactionalMD5 = value

Syntax

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

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

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

Property Value

Use true to calculate and send/validate content MD5 for transactions; 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