ICloudBlob.StreamWriteSizeInBytes Property

Windows Runtime Azure Storage Client Library

Gets or sets the number of bytes to buffer when writing to a page blob stream or the block size for writing to a block blob.

Namespace: Microsoft.WindowsAzure.Storage.Blob
Assembly: Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)

Usage

Visual Basic
Dim instance As ICloudBlob
Dim value As Integer

value = instance.StreamWriteSizeInBytes

instance.StreamWriteSizeInBytes = value

Syntax

Visual Basic
Property StreamWriteSizeInBytes As Integer
C#
int StreamWriteSizeInBytes { get; set; }
C++
property int StreamWriteSizeInBytes {
	int get ();
	void set (int value);
}
J#
/** @property */
int get_StreamWriteSizeInBytes ()

/** @property */
void set_StreamWriteSizeInBytes (int value)
JScript
function get StreamWriteSizeInBytes () : int

function set StreamWriteSizeInBytes (value : int)

Property Value

The number of bytes to buffer or the size of a block, in bytes.

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