Gets or sets the minimum number of bytes to buffer when reading from a blob stream.
Namespace: Microsoft.WindowsAzure.Storage.Blob
Assembly: Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)
Usage
Visual Basic |
---|
Dim instance As CloudBlockBlob
Dim value As Integer
value = instance.StreamMinimumReadSizeInBytes
instance.StreamMinimumReadSizeInBytes = value |
Syntax
Visual Basic |
---|
Public Property StreamMinimumReadSizeInBytes As Integer |
C# |
---|
public int StreamMinimumReadSizeInBytes { get; set; } |
C++ |
---|
public:
virtual property int StreamMinimumReadSizeInBytes {
int get () sealed;
void set (int value) sealed;
} |
J# |
---|
/** @property */
public final int get_StreamMinimumReadSizeInBytes ()
/** @property */
public final void set_StreamMinimumReadSizeInBytes (int value)
|
JScript |
---|
public final function get StreamMinimumReadSizeInBytes () : int
public final function set StreamMinimumReadSizeInBytes (value : int)
|
Property Value
The minimum number of bytes to buffer, being at least 16 KB.
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Platforms
See Also