Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

Constructs an access condition such that an operation will be performed only if resource's current sequence number is less than the specified value.

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

Syntax

 
public static AccessCondition GenerateIfSequenceNumberLessThanCondition(
	long sequenceNumber
)
 
public:
static AccessCondition^ GenerateIfSequenceNumberLessThanCondition(
	long long sequenceNumber
)
 
static member GenerateIfSequenceNumberLessThanCondition : 
        sequenceNumber:int64 -> AccessCondition
 
Public Shared Function GenerateIfSequenceNumberLessThanCondition (
	sequenceNumber As Long
) As AccessCondition

Parameters

sequenceNumber
Type: System.Int64System::Int64System.Int64System.Int64

The value to compare to the current sequence number.

Return to top