Gets or sets the minimum number of bytes to buffer when reading from a file stream.
Namespace: Microsoft.WindowsAzure.Storage.File
Assembly: Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)
Usage
Visual Basic |
---|
Dim instance As CloudFile
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:
property int StreamMinimumReadSizeInBytes {
int get ();
void set (int value);
} |
J# |
---|
/** @property */
public int get_StreamMinimumReadSizeInBytes ()
/** @property */
public void set_StreamMinimumReadSizeInBytes (int value)
|
JScript |
---|
public function get StreamMinimumReadSizeInBytes () : int
public function set StreamMinimumReadSizeInBytes (value : int)
|
Property Value
The minimum number of bytes to buffer, being at least 16KB.
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