BlobRequestOptions.ParallelOperationThreadCount Property

Windows Runtime Azure Storage Client Library

Gets or sets the number of blocks that may be simultaneously uploaded when uploading a blob that is greater than the value specified by the SingleBlobUploadThresholdInBytes property in size.

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

Usage

Visual Basic
Dim instance As BlobRequestOptions
Dim value As Nullable(Of Integer)

value = instance.ParallelOperationThreadCount

instance.ParallelOperationThreadCount = value

Syntax

Visual Basic
Public Property ParallelOperationThreadCount As Nullable(Of Integer)
C#
public Nullable<int> ParallelOperationThreadCount { get; set; }
C++
public:
property Nullable<int> ParallelOperationThreadCount {
	Nullable<int> get ();
	void set (Nullable<int> value);
}
J#
/** @property */
public Nullable<int> get_ParallelOperationThreadCount ()

/** @property */
public void set_ParallelOperationThreadCount (Nullable<int> value)
JScript
public function get ParallelOperationThreadCount () : Nullable<int>

public function set ParallelOperationThreadCount (value : Nullable<int>)

Property Value

An integer value indicating the number of parallel blob upload operations that may proceed.

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