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 the end position of the append blob is equal to the specified value.

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

Syntax

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

Parameters

appendPosition
Type: System.Int64System::Int64System.Int64System.Int64

An integer specifying the offset to compare to the current end position of the blob.

Return to top