TransferConfigurationsBlockSize Property |
Gets or sets the BlockSize to use for Windows Azure Storage transfers to block blob(s).
It must be between 4MB and 100MB and be multiple of 4MB.
Currently, the max block count of a block blob is limited to 50000.
When transfering a big file and the BlockSize provided is smaller than the minimum value - (size/50000),
it'll be reset to a value which is greater than the minimum value and multiple of 4MB for this file.
Namespace:
Microsoft.Azure.Storage.DataMovement
Assembly:
Microsoft.Azure.Storage.DataMovement (in Microsoft.Azure.Storage.DataMovement.dll) Version: 2.0.1.0 (2.0.1.0)
Syntax public int BlockSize { get; set; }
Public Property BlockSize As Integer
Get
Set
public:
property int BlockSize {
int get ();
void set (int value);
}
member BlockSize : int with get, set
Property Value
Type:
Int32BlockSize to use for Windows Azure Storage transfers.
See Also