CloudFile.BeginDownloadRangeToStream 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
BeginDownloadRangeToStream(Stream, Nullable<Int64>, Nullable<Int64>, AsyncCallback, Object) |
Commence une opération asynchrone pour télécharger le contenu d’un fichier dans un flux. |
BeginDownloadRangeToStream(Stream, Nullable<Int64>, Nullable<Int64>, AccessCondition, FileRequestOptions, OperationContext, AsyncCallback, Object) |
Commence une opération asynchrone pour télécharger le contenu d’un fichier dans un flux. |
BeginDownloadRangeToStream(Stream, Nullable<Int64>, Nullable<Int64>, AsyncCallback, Object)
Commence une opération asynchrone pour télécharger le contenu d’un fichier dans un flux.
[Microsoft.Azure.Storage.DoesServiceRequest]
public virtual Microsoft.Azure.Storage.ICancellableAsyncResult BeginDownloadRangeToStream (System.IO.Stream target, long? offset, long? length, AsyncCallback callback, object state);
[<Microsoft.Azure.Storage.DoesServiceRequest>]
abstract member BeginDownloadRangeToStream : System.IO.Stream * Nullable<int64> * Nullable<int64> * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
override this.BeginDownloadRangeToStream : System.IO.Stream * Nullable<int64> * Nullable<int64> * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
Public Overridable Function BeginDownloadRangeToStream (target As Stream, offset As Nullable(Of Long), length As Nullable(Of Long), callback As AsyncCallback, state As Object) As ICancellableAsyncResult
Paramètres
- target
- Stream
Le flux de données cible.
- callback
- AsyncCallback
Délégué de rappel qui recevra une notification une fois l’opération asynchrone terminée.
- state
- Object
Objet défini par l’utilisateur qui sera passé au délégué de rappel.
Retours
ICancellableAsyncResult qui fait référence à l’opération asynchrone.
- Attributs
S’applique à
BeginDownloadRangeToStream(Stream, Nullable<Int64>, Nullable<Int64>, AccessCondition, FileRequestOptions, OperationContext, AsyncCallback, Object)
Commence une opération asynchrone pour télécharger le contenu d’un fichier dans un flux.
[Microsoft.Azure.Storage.DoesServiceRequest]
public virtual Microsoft.Azure.Storage.ICancellableAsyncResult BeginDownloadRangeToStream (System.IO.Stream target, long? offset, long? length, Microsoft.Azure.Storage.AccessCondition accessCondition, Microsoft.Azure.Storage.File.FileRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext, AsyncCallback callback, object state);
[<Microsoft.Azure.Storage.DoesServiceRequest>]
abstract member BeginDownloadRangeToStream : System.IO.Stream * Nullable<int64> * Nullable<int64> * Microsoft.Azure.Storage.AccessCondition * Microsoft.Azure.Storage.File.FileRequestOptions * Microsoft.Azure.Storage.OperationContext * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
override this.BeginDownloadRangeToStream : System.IO.Stream * Nullable<int64> * Nullable<int64> * Microsoft.Azure.Storage.AccessCondition * Microsoft.Azure.Storage.File.FileRequestOptions * Microsoft.Azure.Storage.OperationContext * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
Public Overridable Function BeginDownloadRangeToStream (target As Stream, offset As Nullable(Of Long), length As Nullable(Of Long), accessCondition As AccessCondition, options As FileRequestOptions, operationContext As OperationContext, callback As AsyncCallback, state As Object) As ICancellableAsyncResult
Paramètres
- target
- Stream
Le flux de données cible.
- accessCondition
- AccessCondition
Objet AccessCondition qui représente les conditions d'accès pour le fichier. Si la valeur est null
, aucune condition n'est utilisée.
- options
- FileRequestOptions
Objet FileRequestOptions qui spécifie les options supplémentaires de la demande.
- operationContext
- OperationContext
Objet OperationContext qui représente le contexte de l'opération actuelle.
- callback
- AsyncCallback
Délégué de rappel qui recevra une notification une fois l’opération asynchrone terminée.
- state
- Object
Objet défini par l’utilisateur qui sera passé au délégué de rappel.
Retours
ICancellableAsyncResult qui fait référence à l’opération asynchrone.
- Attributs
S’applique à
Azure SDK for .NET