AccessCondition Class

Definition

Represents a set of access conditions to be used for operations against the storage services.

public sealed class AccessCondition
type AccessCondition = class
Public NotInheritable Class AccessCondition
Inheritance
AccessCondition

Constructors

AccessCondition()

Properties

IfAppendPositionEqual

Gets or sets a value for a condition specifying the byte offset to check for when committing a block to an append blob. The append will succeed only if the end position is equal to this number.

IfMatchContentCrc

Gets or sets a CRC64 value for a condition speifying that the given CRC64 must match the CRC64 of the specified resource.

IfMatchETag

Gets or sets an ETag value for a condition specifying that the given ETag must match the ETag of the specified resource.

IfMaxSizeLessThanOrEqual

Gets or sets a value for a condition that specifies the maximum size allowed for an append blob when a new block is committed. The append will succeed only if the size of the blob after the append operation is less than or equal to the specified size.

IfModifiedSinceTime

Gets or sets a DateTimeOffset value for a condition specifying a time since which a resource has been modified.

IfNoneMatchContentCrc

Gets or sets a CRC64 value for a condition specifying that the given CRC64 must not match the CRC64 of the specified resource.

IfNoneMatchETag

Gets or sets an ETag value for a condition specifying that the given ETag must not match the ETag of the specified resource.

IfNotModifiedSinceTime

Gets or sets a DateTimeOffset value for a condition specifying a time since which a resource has not been modified.

IfSequenceNumberEqual

Gets or sets a value for a condition specifying that the current sequence number must be equal to the specified value.

IfSequenceNumberLessThan

Gets or sets a value for a condition specifying that the current sequence number must be less than the specified value.

IfSequenceNumberLessThanOrEqual

Gets or sets a value for a condition specifying that the current sequence number must be less than or equal to the specified value.

LeaseId

Gets or sets a lease ID that must match the lease on a resource.

Methods

Clone()

Provide a shallow copy of the current access condition

GenerateEmptyCondition()

Constructs an empty access condition.

GenerateIfAppendPositionEqualCondition(Int64)

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.

GenerateIfExistsCondition()

Constructs an access condition such that an operation will be performed only if the resource exists.

GenerateIfMatchCondition(String)

Constructs an access condition such that an operation will be performed only if the resource's ETag value matches the specified ETag value.

GenerateIfMaxSizeLessThanOrEqualCondition(Int64)

Constructs an access condition such that an operation will be performed only if the size of the append blob after committing the block is less than or equal to the specified value.

GenerateIfModifiedSinceCondition(DateTimeOffset)

Constructs an access condition such that an operation will be performed only if the resource has been modified since the specified time.

GenerateIfNoneMatchCondition(String)

Constructs an access condition such that an operation will be performed only if the resource's ETag value does not match the specified ETag value.

GenerateIfNotExistsCondition()

Constructs an access condition such that an operation will be performed only if the resource does not exist.

GenerateIfNotModifiedSinceCondition(DateTimeOffset)

Constructs an access condition such that an operation will be performed only if the resource has not been modified since the specified time.

GenerateIfSequenceNumberEqualCondition(Int64)

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

GenerateIfSequenceNumberLessThanCondition(Int64)

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

GenerateIfSequenceNumberLessThanOrEqualCondition(Int64)

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

GenerateLeaseCondition(String)

Constructs an access condition such that an operation will be performed only if the lease ID on the resource matches the specified lease ID.

Applies to