Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

If the blob is a page blob, gets the blob's current sequence number.

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

Syntax

 
public Nullable<long> PageBlobSequenceNumber { get; internal set; }
 
public:
property Nullable<long long> PageBlobSequenceNumber {
	Nullable<long long> get();
	internal: void set(Nullable<long long> value);
}
 
member PageBlobSequenceNumber : Nullable<int64> with get, internal set
 
Public Property PageBlobSequenceNumber As Nullable(OfLong)
	Get
	Friend Set
End Property

Property Value

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

A long containing the blob's current sequence number.

Return to top