Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

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)

Syntax

 
public Nullable<long> SingleBlobUploadThresholdInBytes { get; set; }
 
public:
property Nullable<long long> SingleBlobUploadThresholdInBytes {
	Nullable<long long> get();
	void set(Nullable<long long> value);
}
 
member SingleBlobUploadThresholdInBytes : Nullable<int64> with get, set
 
Public Property SingleBlobUploadThresholdInBytes As Nullable(OfLong)

Property Value

Type: System.Nullable<Int64>System::Nullable<Int64>System.Nullable<Int64>System.Nullable(Of Int64)

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.

Return to top