Gets or sets the number of bytes to buffer when writing to 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.StreamWriteSizeInBytes
instance.StreamWriteSizeInBytes = value |
Syntax
Visual Basic |
---|
Public Property StreamWriteSizeInBytes As Integer |
C# |
---|
public int StreamWriteSizeInBytes { get; set; } |
C++ |
---|
public:
property int StreamWriteSizeInBytes {
int get ();
void set (int value);
} |
J# |
---|
/** @property */
public int get_StreamWriteSizeInBytes ()
/** @property */
public void set_StreamWriteSizeInBytes (int value)
|
JScript |
---|
public function get StreamWriteSizeInBytes () : int
public function set StreamWriteSizeInBytes (value : int)
|
Property Value
The number of bytes to buffer, ranging from between 512 bytes and 4 MB inclusive.
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