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 CloudBlobClient
Dim value As Nullable(Of Integer)
value = instance.ParallelOperationThreadCount
instance.ParallelOperationThreadCount = value |
Syntax
Visual Basic |
---|
<ObsoleteAttribute("Use DefaultRequestOptions.ParallelOperationThreadCount.")> _
Public Property ParallelOperationThreadCount As Nullable(Of Integer) |
C# |
---|
[ObsoleteAttribute("Use DefaultRequestOptions.ParallelOperationThreadCount.")]
public Nullable<int> ParallelOperationThreadCount { get; set; } |
C++ |
---|
[ObsoleteAttribute(L"Use DefaultRequestOptions.ParallelOperationThreadCount.")]
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 indicating 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
See Also