FileRequestOptions.ParallelOperationThreadCount Property

Windows Runtime Azure Storage Client Library

Gets or sets the number of ranges that may be simultaneously uploaded when uploading a file.

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

Usage

Visual Basic
Dim instance As FileRequestOptions
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

The number of parallel 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