Gets or sets the maximum size of a blob in bytes that may be uploaded as a single 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 Long)
value = instance.SingleBlobUploadThresholdInBytes
instance.SingleBlobUploadThresholdInBytes = value |
Syntax
Visual Basic |
---|
Public Property SingleBlobUploadThresholdInBytes As Nullable(Of Long) |
C# |
---|
public Nullable<long> SingleBlobUploadThresholdInBytes { get; set; } |
C++ |
---|
public:
property Nullable<long long> SingleBlobUploadThresholdInBytes {
Nullable<long long> get ();
void set (Nullable<long long> value);
} |
J# |
---|
/** @property */
public Nullable<long> get_SingleBlobUploadThresholdInBytes ()
/** @property */
public void set_SingleBlobUploadThresholdInBytes (Nullable<long> value)
|
JScript |
---|
public function get SingleBlobUploadThresholdInBytes () : Nullable<long>
public function set SingleBlobUploadThresholdInBytes (value : Nullable<long>)
|
Property Value
A long indicating the maximum size of a blob, in bytes, that may be uploaded as a single blob, ranging from between 1 and 64 MB inclusive.
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