Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

If the blob is an append blob, gets the number of committed blocks.

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

Syntax

 
public Nullable<int> AppendBlobCommittedBlockCount { get; internal set; }
 
public:
property Nullable<int> AppendBlobCommittedBlockCount {
	Nullable<int> get();
	internal: void set(Nullable<int> value);
}
 
member AppendBlobCommittedBlockCount : Nullable<int> with get, internal set
 
Public Property AppendBlobCommittedBlockCount As Nullable(OfInteger)
	Get
	Friend Set
End Property

Property Value

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

An integer containing the number of committed blocks.

Return to top