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 CloudBlobClient
Dim value As Nullable(Of Long)
value = instance.SingleBlobUploadThresholdInBytes
instance.SingleBlobUploadThresholdInBytes = value |
Syntax
Visual Basic |
---|
<ObsoleteAttribute("Use DefaultRequestOptions.SingleBlobUploadThresholdInBytes.")> _
Public Property SingleBlobUploadThresholdInBytes As Nullable(Of Long) |
C# |
---|
[ObsoleteAttribute("Use DefaultRequestOptions.SingleBlobUploadThresholdInBytes.")]
public Nullable<long> SingleBlobUploadThresholdInBytes { get; set; } |
C++ |
---|
[ObsoleteAttribute(L"Use DefaultRequestOptions.SingleBlobUploadThresholdInBytes.")]
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 containing 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