ICloudBlob.DownloadToByteArrayAsync Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
DownloadToByteArrayAsync(Byte[], Int32) |
Lance une opération asynchrone pour télécharger le contenu d’un objet blob dans un tableau d’octets. |
DownloadToByteArrayAsync(Byte[], Int32, CancellationToken) |
Lance une opération asynchrone pour télécharger le contenu d’un objet blob dans un tableau d’octets. |
DownloadToByteArrayAsync(Byte[], Int32, AccessCondition, BlobRequestOptions, OperationContext) |
Lance une opération asynchrone pour télécharger le contenu d’un objet blob dans un tableau d’octets. |
DownloadToByteArrayAsync(Byte[], Int32, AccessCondition, BlobRequestOptions, OperationContext, CancellationToken) |
Lance une opération asynchrone pour télécharger le contenu d’un objet blob dans un tableau d’octets. |
DownloadToByteArrayAsync(Byte[], Int32)
Lance une opération asynchrone pour télécharger le contenu d’un objet blob dans un tableau d’octets.
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)
Paramètres
- target
- Byte[]
Tableau d'octets cible.
- index
- Int32
Décalage de départ dans le tableau d'octets.
Retours
Objet Task de type int
qui représente l’opération asynchrone.
S’applique à
DownloadToByteArrayAsync(Byte[], Int32, CancellationToken)
Lance une opération asynchrone pour télécharger le contenu d’un objet blob dans un tableau d’octets.
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)
Paramètres
- target
- Byte[]
Tableau d'octets cible.
- index
- Int32
Décalage de départ dans le tableau d'octets.
- cancellationToken
- CancellationToken
CancellationToken à observer en attendant qu'une tâche se termine.
Retours
Objet Task de type int
qui représente l’opération asynchrone.
S’applique à
DownloadToByteArrayAsync(Byte[], Int32, AccessCondition, BlobRequestOptions, OperationContext)
Lance une opération asynchrone pour télécharger le contenu d’un objet blob dans un tableau d’octets.
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)
Paramètres
- target
- Byte[]
Tableau d'octets cible.
- index
- Int32
Décalage de départ dans le tableau d'octets.
- accessCondition
- AccessCondition
Objet AccessCondition qui représente la condition qui doit être remplie pour que la demande continue.
- options
- BlobRequestOptions
Objet BlobRequestOptions qui spécifie les options supplémentaires de la demande.
- operationContext
- OperationContext
Objet OperationContext qui représente le contexte de l'opération actuelle.
Retours
Objet Task de type int
qui représente l’opération asynchrone.
S’applique à
DownloadToByteArrayAsync(Byte[], Int32, AccessCondition, BlobRequestOptions, OperationContext, CancellationToken)
Lance une opération asynchrone pour télécharger le contenu d’un objet blob dans un tableau d’octets.
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)
Paramètres
- target
- Byte[]
Tableau d'octets cible.
- index
- Int32
Décalage de départ dans le tableau d'octets.
- accessCondition
- AccessCondition
Objet AccessCondition qui représente la condition qui doit être remplie pour que la demande continue.
- options
- BlobRequestOptions
Objet BlobRequestOptions qui spécifie les options supplémentaires de la demande.
- operationContext
- OperationContext
Objet OperationContext qui représente le contexte de l'opération actuelle.
- cancellationToken
- CancellationToken
CancellationToken à observer en attendant qu'une tâche se termine.
Retours
Objet Task de type int
qui représente l’opération asynchrone.
S’applique à
Azure SDK for .NET