Class AppendBlobRequestConditions
Specifies append blob specific access conditions.
Inheritance
Azure.RequestConditions
AppendBlobRequestConditions
Inherited Members
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.Storage.Blobs.dll
Syntax
public class AppendBlobRequestConditions : Azure.Storage.Blobs.Models.BlobRequestConditions
Constructors
AppendBlobRequestConditions()
Declaration
public AppendBlobRequestConditions ();
Properties
IfAppendPositionEqual
IfAppendPositionEqual ensures that the AppendBlock operation succeeds only if the append position is equal to a value.
Declaration
public Nullable<long> IfAppendPositionEqual { get; set; }
Property Value
System.Nullable<System.Int64>
|
IfMaxSizeLessThanOrEqual
IfMaxSizeLessThanOrEqual ensures that the AppendBlock operation succeeds only if the append blob's size is less than or equal to a value.
Declaration
public Nullable<long> IfMaxSizeLessThanOrEqual { get; set; }
Property Value
System.Nullable<System.Int64>
|