AccessCondition.GenerateIfSequenceNumberEqualCondition Method (Int64) (Microsoft.WindowsAzure.Storage)

From Microsoft.WindowsAzure.Storage.Queue

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

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

Syntax

 
public static AccessCondition GenerateIfSequenceNumberEqualCondition(
	long sequenceNumber
)
 
public:
static AccessCondition^ GenerateIfSequenceNumberEqualCondition(
	long long sequenceNumber
)
 
static member GenerateIfSequenceNumberEqualCondition : 
        sequenceNumber:int64 -> AccessCondition
 
Public Shared Function GenerateIfSequenceNumberEqualCondition (
	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