Class AppendBlobOpenWriteOptions
Optional parameters for Append Blob Open Write.
Inheritance
System.Object
AppendBlobOpenWriteOptions
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.Storage.Blobs.dll
Syntax
public class AppendBlobOpenWriteOptions
Constructors
AppendBlobOpenWriteOptions()
Declaration
public AppendBlobOpenWriteOptions ();
Properties
BufferSize
The size of the buffer to use. Default is 4 MB, max is 4 MB. See AppendBlobMaxAppendBlockBytes.
Declaration
public Nullable<long> BufferSize { get; set; }
Property Value
System.Nullable<System.Int64>
|
OpenConditions
Access conditions used to open the write stream.
Declaration
public Azure.Storage.Blobs.Models.AppendBlobRequestConditions OpenConditions { get; set; }
Property Value
AppendBlobRequestConditions
|
ProgressHandler
Optional System.IProgress to provide progress updates about data transfers.
Declaration
public IProgress<long> ProgressHandler { get; set; }
Property Value
System.IProgress<System.Int64>
|