Show / Hide Table of Contents

Class PageBlobRequestConditions

Specifies page blob specific access conditions.

Inheritance
Azure.RequestConditions
BlobLeaseRequestConditions
BlobRequestConditions
PageBlobRequestConditions
Inherited Members
BlobLeaseRequestConditions.TagConditions
BlobRequestConditions.LeaseId
BlobRequestConditions.ToString()
Namespace: System.Dynamic.ExpandoObject
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
System.Nullable<System.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
System.Nullable<System.Int64>

IfSequenceNumberLessThanOrEqual

IfSequenceNumberLessThanOrEqual ensures that the page blob operation succeeds only if the blob's sequence number is less than or equal to a value.

Declaration
public Nullable<long> IfSequenceNumberLessThanOrEqual { get; set; }
Property Value
System.Nullable<System.Int64>

Back to top Azure SDK for .NET