CloudFile.StreamWriteSizeInBytes Property

Windows Runtime Azure Storage Client Library

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

Development Platforms

Windows Vista, Windows 7, Windows Server 2008, Windows 8.1, Windows Server 2012 R2, Windows 8 and Windows Server 2012

Target Platforms

See Also