Partager via


DeviceClient.UploadToBlobAsync Méthode

Définition

Surcharges

UploadToBlobAsync(String, Stream)
Obsolète.

Charge un flux vers un objet blob de blocs dans un compte de stockage associé à l’IoTHub pour cet appareil. Si l’objet blob existe déjà, il est remplacé.

UploadToBlobAsync(String, Stream, CancellationToken)
Obsolète.

Charge un flux vers un objet blob de blocs dans un compte de stockage associé à l’IoTHub pour cet appareil. Si l’objet blob existe déjà, il est remplacé.

UploadToBlobAsync(String, Stream)

Attention

This API has been split into three APIs: GetFileUploadSasUri, uploading to blob directly using the Azure Storage SDK, and CompleteFileUploadAsync

Charge un flux vers un objet blob de blocs dans un compte de stockage associé à l’IoTHub pour cet appareil. Si l’objet blob existe déjà, il est remplacé.

[System.Obsolete("This API has been split into three APIs: GetFileUploadSasUri, uploading to blob directly using the Azure Storage SDK, and CompleteFileUploadAsync")]
public System.Threading.Tasks.Task UploadToBlobAsync (string blobName, System.IO.Stream source);
[<System.Obsolete("This API has been split into three APIs: GetFileUploadSasUri, uploading to blob directly using the Azure Storage SDK, and CompleteFileUploadAsync")>]
member this.UploadToBlobAsync : string * System.IO.Stream -> System.Threading.Tasks.Task
Public Function UploadToBlobAsync (blobName As String, source As Stream) As Task

Paramètres

blobName
String

Nom de l’objet blob à charger.

source
Stream

Un flux avec du contenu d’objet blob. Doit être supprimé une fois le chargement terminé.

Retours

AsncTask

Attributs

S’applique à

UploadToBlobAsync(String, Stream, CancellationToken)

Attention

This API has been split into three APIs: GetFileUploadSasUri, uploading to blob directly using the Azure Storage SDK, and CompleteFileUploadAsync

Charge un flux vers un objet blob de blocs dans un compte de stockage associé à l’IoTHub pour cet appareil. Si l’objet blob existe déjà, il est remplacé.

[System.Obsolete("This API has been split into three APIs: GetFileUploadSasUri, uploading to blob directly using the Azure Storage SDK, and CompleteFileUploadAsync")]
public System.Threading.Tasks.Task UploadToBlobAsync (string blobName, System.IO.Stream source, System.Threading.CancellationToken cancellationToken);
[<System.Obsolete("This API has been split into three APIs: GetFileUploadSasUri, uploading to blob directly using the Azure Storage SDK, and CompleteFileUploadAsync")>]
member this.UploadToBlobAsync : string * System.IO.Stream * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Function UploadToBlobAsync (blobName As String, source As Stream, cancellationToken As CancellationToken) As Task

Paramètres

blobName
String

Nom de l’objet blob à charger

source
Stream

Un flux avec le contenu de l’objet blob. Doit être supprimé une fois le chargement terminé.

cancellationToken
CancellationToken

Jeton d’annulation pour annuler l’opération.

Retours

Tâche à attendre

Attributs

Exceptions

Levée lorsque l’opération a été annulée.

S’applique à