CloudBlockBlob.StreamWriteSizeInBytes Property

Windows Runtime Azure Storage Client Library

Gets or sets 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 CloudBlockBlob
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:
virtual property int StreamWriteSizeInBytes {
	int get () sealed;
	void set (int value) sealed;
}
J#
/** @property */
public final int get_StreamWriteSizeInBytes ()

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

public final function set StreamWriteSizeInBytes (value : int)

Property Value

The size of a block, in bytes, ranging from between 16 KB 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