你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
ICloudBlob.DownloadToByteArrayAsync 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
DownloadToByteArrayAsync(Byte[], Int32) |
启动异步操作,将 Blob 的内容下载到字节数组。 |
DownloadToByteArrayAsync(Byte[], Int32, CancellationToken) |
启动异步操作,将 Blob 的内容下载到字节数组。 |
DownloadToByteArrayAsync(Byte[], Int32, AccessCondition, BlobRequestOptions, OperationContext) |
启动异步操作,将 Blob 的内容下载到字节数组。 |
DownloadToByteArrayAsync(Byte[], Int32, AccessCondition, BlobRequestOptions, OperationContext, CancellationToken) |
启动异步操作,将 Blob 的内容下载到字节数组。 |
DownloadToByteArrayAsync(Byte[], Int32)
启动异步操作,将 Blob 的内容下载到字节数组。
public System.Threading.Tasks.Task<int> DownloadToByteArrayAsync (byte[] target, int index);
abstract member DownloadToByteArrayAsync : byte[] * int -> System.Threading.Tasks.Task<int>
Public Function DownloadToByteArrayAsync (target As Byte(), index As Integer) As Task(Of Integer)
参数
- target
- Byte[]
目标字节数组。
- index
- Int32
字节数组中的起始偏移量。
返回
表示异步操作的 int
类型的 Task 对象。
适用于
DownloadToByteArrayAsync(Byte[], Int32, CancellationToken)
启动异步操作,将 Blob 的内容下载到字节数组。
public System.Threading.Tasks.Task<int> DownloadToByteArrayAsync (byte[] target, int index, System.Threading.CancellationToken cancellationToken);
abstract member DownloadToByteArrayAsync : byte[] * int * System.Threading.CancellationToken -> System.Threading.Tasks.Task<int>
Public Function DownloadToByteArrayAsync (target As Byte(), index As Integer, cancellationToken As CancellationToken) As Task(Of Integer)
参数
- target
- Byte[]
目标字节数组。
- index
- Int32
字节数组中的起始偏移量。
- cancellationToken
- CancellationToken
等待任务完成期间要观察的 CancellationToken。
返回
表示异步操作的 int
类型的 Task 对象。
适用于
DownloadToByteArrayAsync(Byte[], Int32, AccessCondition, BlobRequestOptions, OperationContext)
启动异步操作,将 Blob 的内容下载到字节数组。
public System.Threading.Tasks.Task<int> DownloadToByteArrayAsync (byte[] target, int index, Microsoft.Azure.Storage.AccessCondition accessCondition, Microsoft.Azure.Storage.Blob.BlobRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext);
abstract member DownloadToByteArrayAsync : byte[] * int * Microsoft.Azure.Storage.AccessCondition * Microsoft.Azure.Storage.Blob.BlobRequestOptions * Microsoft.Azure.Storage.OperationContext -> System.Threading.Tasks.Task<int>
Public Function DownloadToByteArrayAsync (target As Byte(), index As Integer, accessCondition As AccessCondition, options As BlobRequestOptions, operationContext As OperationContext) As Task(Of Integer)
参数
- target
- Byte[]
目标字节数组。
- index
- Int32
字节数组中的起始偏移量。
- accessCondition
- AccessCondition
一个 AccessCondition 对象,表示继续处理请求而必须满足的条件。
- options
- BlobRequestOptions
一个 BlobRequestOptions 对象,它指定请求的其他选项。
- operationContext
- OperationContext
一个 OperationContext 对象,它一个表示当前操作的上下文。
返回
表示异步操作的 int
类型的 Task 对象。
适用于
DownloadToByteArrayAsync(Byte[], Int32, AccessCondition, BlobRequestOptions, OperationContext, CancellationToken)
启动异步操作,将 Blob 的内容下载到字节数组。
public System.Threading.Tasks.Task<int> DownloadToByteArrayAsync (byte[] target, int index, Microsoft.Azure.Storage.AccessCondition accessCondition, Microsoft.Azure.Storage.Blob.BlobRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext, System.Threading.CancellationToken cancellationToken);
abstract member DownloadToByteArrayAsync : byte[] * int * Microsoft.Azure.Storage.AccessCondition * Microsoft.Azure.Storage.Blob.BlobRequestOptions * Microsoft.Azure.Storage.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task<int>
Public Function DownloadToByteArrayAsync (target As Byte(), index As Integer, accessCondition As AccessCondition, options As BlobRequestOptions, operationContext As OperationContext, cancellationToken As CancellationToken) As Task(Of Integer)
参数
- target
- Byte[]
目标字节数组。
- index
- Int32
字节数组中的起始偏移量。
- accessCondition
- AccessCondition
一个 AccessCondition 对象,表示继续处理请求而必须满足的条件。
- options
- BlobRequestOptions
一个 BlobRequestOptions 对象,它指定请求的其他选项。
- operationContext
- OperationContext
一个 OperationContext 对象,它一个表示当前操作的上下文。
- cancellationToken
- CancellationToken
等待任务完成期间要观察的 CancellationToken。
返回
表示异步操作的 int
类型的 Task 对象。