Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

Gets or sets a value for a condition that specifies the maximum size allowed for an append blob when a new block is committed. The append will succeed only if the size of the blob after the append operation is less than or equal to the specified size.

Namespace:   Microsoft.WindowsAzure.Storage
Assembly:  Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)

Syntax

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

Property Value

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

The maximum size in bytes, or null if no value is set.

Remarks

This condition only applies to append blobs.

Return to top