Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

Gets or sets a value for a condition specifying that the current sequence number must be equal to the specified value.

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

Syntax

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

Property Value

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

A sequence number, or null if no condition exists.

Remarks

This condition only applies to page blobs.

Return to top