Class PageBlobRequestConditions
Specifies page blob specific access conditions.
Namespace: Azure.Storage.Blobs.Models
Assembly: Azure.Storage.Blobs.dll
Syntax
public class PageBlobRequestConditions : Azure.Storage.Blobs.Models.BlobRequestConditions
Constructors
PageBlobRequestConditions()
Declaration
public PageBlobRequestConditions ();
Properties
IfSequenceNumberEqual
IfSequenceNumberEqual ensures that the page blob operation succeeds only if the blob's sequence number is equal to a value.
Declaration
public Nullable<long> IfSequenceNumberEqual { get; set; }
Property Value
Nullable<Int64>
|
IfSequenceNumberLessThan
IfSequenceNumberLessThan ensures that the page blob operation succeeds only if the blob's sequence number is less than a value.
Declaration
public Nullable<long> IfSequenceNumberLessThan { get; set; }
Property Value
Nullable<Int64>
|