Gets or sets a value to calculate and send/validate content MD5 for transactions.
Namespace: Microsoft.WindowsAzure.Storage.File
Assembly: Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)
Usage
| Visual Basic |
|---|
Dim instance As FileRequestOptions
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
See Also