Gets or sets a value to indicate that MD5 validation will be disabled when downloading files.
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.DisableContentMD5Validation
instance.DisableContentMD5Validation = value |
Syntax
Visual Basic |
---|
Public Property DisableContentMD5Validation As Nullable(Of Boolean) |
C# |
---|
public Nullable<bool> DisableContentMD5Validation { get; set; } |
C++ |
---|
public:
property Nullable<bool> DisableContentMD5Validation {
Nullable<bool> get ();
void set (Nullable<bool> value);
} |
J# |
---|
/** @property */
public Nullable<boolean> get_DisableContentMD5Validation ()
/** @property */
public void set_DisableContentMD5Validation (Nullable<boolean> value)
|
JScript |
---|
public function get DisableContentMD5Validation () : Nullable<boolean>
public function set DisableContentMD5Validation (value : Nullable<boolean>)
|
Property Value
Use true to disable MD5 validation; false to enable MD5 validation.
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