Gets or sets a value to indicate that an MD5 hash will be calculated and stored when uploading a file.
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.StoreFileContentMD5
instance.StoreFileContentMD5 = value |
Syntax
Visual Basic |
---|
Public Property StoreFileContentMD5 As Nullable(Of Boolean) |
C# |
---|
public Nullable<bool> StoreFileContentMD5 { get; set; } |
C++ |
---|
public:
property Nullable<bool> StoreFileContentMD5 {
Nullable<bool> get ();
void set (Nullable<bool> value);
} |
J# |
---|
/** @property */
public Nullable<boolean> get_StoreFileContentMD5 ()
/** @property */
public void set_StoreFileContentMD5 (Nullable<boolean> value)
|
JScript |
---|
public function get StoreFileContentMD5 () : Nullable<boolean>
public function set StoreFileContentMD5 (value : Nullable<boolean>)
|
Property Value
Use true to calculate and store an MD5 hash when uploading a file; 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