你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

CloudBlob.DownloadRangeToByteArray 方法

定义

将 Blob 中的一系列字节下载到数组。

[Microsoft.Azure.Storage.DoesServiceRequest]
public virtual int DownloadRangeToByteArray (byte[] target, int index, long? blobOffset, long? length, Microsoft.Azure.Storage.AccessCondition accessCondition = default, Microsoft.Azure.Storage.Blob.BlobRequestOptions options = default, Microsoft.Azure.Storage.OperationContext operationContext = default);
[<Microsoft.Azure.Storage.DoesServiceRequest>]
abstract member DownloadRangeToByteArray : byte[] * int * Nullable<int64> * Nullable<int64> * Microsoft.Azure.Storage.AccessCondition * Microsoft.Azure.Storage.Blob.BlobRequestOptions * Microsoft.Azure.Storage.OperationContext -> int
override this.DownloadRangeToByteArray : byte[] * int * Nullable<int64> * Nullable<int64> * Microsoft.Azure.Storage.AccessCondition * Microsoft.Azure.Storage.Blob.BlobRequestOptions * Microsoft.Azure.Storage.OperationContext -> int
Public Overridable Function DownloadRangeToByteArray (target As Byte(), index As Integer, blobOffset As Nullable(Of Long), length As Nullable(Of Long), Optional accessCondition As AccessCondition = Nothing, Optional options As BlobRequestOptions = Nothing, Optional operationContext As OperationContext = Nothing) As Integer

参数

target
Byte[]

目标字节数组。

index
Int32

字节数组中的起始偏移量。

blobOffset
Nullable<Int64>

数据范围的起始偏移量,以字节为单位。

length
Nullable<Int64>

要从 Blob 下载的数据的长度(以字节为单位)。

accessCondition
AccessCondition

一个 AccessCondition 对象,表示继续处理请求而必须满足的条件。

options
BlobRequestOptions

一个 BlobRequestOptions 对象,它指定请求的其他选项。 如果 null为 ,则默认选项应用于请求。

operationContext
OperationContext

一个 OperationContext 对象,它一个表示当前操作的上下文。

返回

读入缓冲区中的总字节数。

属性

适用于