Partager via


CloudFile.DownloadTextAsync Méthode

Définition

Surcharges

DownloadTextAsync()

Retourne une tâche qui effectue une opération asynchrone pour télécharger le contenu du fichier sous forme de chaîne.

DownloadTextAsync(CancellationToken)

Retourne une tâche qui effectue une opération asynchrone pour télécharger le contenu du fichier sous forme de chaîne.

DownloadTextAsync(Encoding, AccessCondition, FileRequestOptions, OperationContext)

Retourne une tâche qui effectue une opération asynchrone pour télécharger le contenu du fichier sous forme de chaîne.

DownloadTextAsync(Encoding, AccessCondition, FileRequestOptions, OperationContext, CancellationToken)

Retourne une tâche qui effectue une opération asynchrone pour télécharger le contenu du fichier sous forme de chaîne.

DownloadTextAsync(Encoding, AccessCondition, FileRequestOptions, OperationContext, IProgress<StorageProgress>, CancellationToken)

Retourne une tâche qui effectue une opération asynchrone pour télécharger le contenu du fichier sous forme de chaîne.

DownloadTextAsync()

Retourne une tâche qui effectue une opération asynchrone pour télécharger le contenu du fichier sous forme de chaîne.

[Microsoft.Azure.Storage.DoesServiceRequest]
public virtual System.Threading.Tasks.Task<string> DownloadTextAsync ();
[<Microsoft.Azure.Storage.DoesServiceRequest>]
abstract member DownloadTextAsync : unit -> System.Threading.Tasks.Task<string>
override this.DownloadTextAsync : unit -> System.Threading.Tasks.Task<string>
Public Overridable Function DownloadTextAsync () As Task(Of String)

Retours

Objet Task qui représente l'opération actuelle.

Attributs

S’applique à

DownloadTextAsync(CancellationToken)

Retourne une tâche qui effectue une opération asynchrone pour télécharger le contenu du fichier sous forme de chaîne.

[Microsoft.Azure.Storage.DoesServiceRequest]
public virtual System.Threading.Tasks.Task<string> DownloadTextAsync (System.Threading.CancellationToken cancellationToken);
[<Microsoft.Azure.Storage.DoesServiceRequest>]
abstract member DownloadTextAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task<string>
override this.DownloadTextAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task<string>
Public Overridable Function DownloadTextAsync (cancellationToken As CancellationToken) As Task(Of String)

Paramètres

cancellationToken
CancellationToken

CancellationToken à observer en attendant qu'une tâche se termine.

Retours

Objet Task qui représente l'opération actuelle.

Attributs

S’applique à

DownloadTextAsync(Encoding, AccessCondition, FileRequestOptions, OperationContext)

Retourne une tâche qui effectue une opération asynchrone pour télécharger le contenu du fichier sous forme de chaîne.

[Microsoft.Azure.Storage.DoesServiceRequest]
public virtual System.Threading.Tasks.Task<string> DownloadTextAsync (System.Text.Encoding encoding, Microsoft.Azure.Storage.AccessCondition accessCondition, Microsoft.Azure.Storage.File.FileRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext);
[<Microsoft.Azure.Storage.DoesServiceRequest>]
abstract member DownloadTextAsync : System.Text.Encoding * Microsoft.Azure.Storage.AccessCondition * Microsoft.Azure.Storage.File.FileRequestOptions * Microsoft.Azure.Storage.OperationContext -> System.Threading.Tasks.Task<string>
override this.DownloadTextAsync : System.Text.Encoding * Microsoft.Azure.Storage.AccessCondition * Microsoft.Azure.Storage.File.FileRequestOptions * Microsoft.Azure.Storage.OperationContext -> System.Threading.Tasks.Task<string>
Public Overridable Function DownloadTextAsync (encoding As Encoding, accessCondition As AccessCondition, options As FileRequestOptions, operationContext As OperationContext) As Task(Of String)

Paramètres

encoding
Encoding

Objet Encoding qui indique le type d’encodage de texte à utiliser.

accessCondition
AccessCondition

Objet AccessCondition qui représente les conditions d'accès pour le fichier.

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.

Retours

Objet Task qui représente l'opération actuelle.

Attributs

S’applique à

DownloadTextAsync(Encoding, AccessCondition, FileRequestOptions, OperationContext, CancellationToken)

Retourne une tâche qui effectue une opération asynchrone pour télécharger le contenu du fichier sous forme de chaîne.

[Microsoft.Azure.Storage.DoesServiceRequest]
public virtual System.Threading.Tasks.Task<string> DownloadTextAsync (System.Text.Encoding encoding, Microsoft.Azure.Storage.AccessCondition accessCondition, Microsoft.Azure.Storage.File.FileRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext, System.Threading.CancellationToken cancellationToken);
[<Microsoft.Azure.Storage.DoesServiceRequest>]
abstract member DownloadTextAsync : System.Text.Encoding * Microsoft.Azure.Storage.AccessCondition * Microsoft.Azure.Storage.File.FileRequestOptions * Microsoft.Azure.Storage.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task<string>
override this.DownloadTextAsync : System.Text.Encoding * Microsoft.Azure.Storage.AccessCondition * Microsoft.Azure.Storage.File.FileRequestOptions * Microsoft.Azure.Storage.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task<string>
Public Overridable Function DownloadTextAsync (encoding As Encoding, accessCondition As AccessCondition, options As FileRequestOptions, operationContext As OperationContext, cancellationToken As CancellationToken) As Task(Of String)

Paramètres

encoding
Encoding

Objet Encoding qui indique le type d’encodage de texte à utiliser.

accessCondition
AccessCondition

Objet AccessCondition qui représente les conditions d'accès pour le fichier.

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.

cancellationToken
CancellationToken

CancellationToken à observer en attendant qu'une tâche se termine.

Retours

Objet Task qui représente l'opération actuelle.

Attributs

S’applique à

DownloadTextAsync(Encoding, AccessCondition, FileRequestOptions, OperationContext, IProgress<StorageProgress>, CancellationToken)

Retourne une tâche qui effectue une opération asynchrone pour télécharger le contenu du fichier sous forme de chaîne.

[Microsoft.Azure.Storage.DoesServiceRequest]
public virtual System.Threading.Tasks.Task<string> DownloadTextAsync (System.Text.Encoding encoding, Microsoft.Azure.Storage.AccessCondition accessCondition, Microsoft.Azure.Storage.File.FileRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext, IProgress<Microsoft.Azure.Storage.Core.Util.StorageProgress> progressHandler, System.Threading.CancellationToken cancellationToken);
[<Microsoft.Azure.Storage.DoesServiceRequest>]
abstract member DownloadTextAsync : System.Text.Encoding * Microsoft.Azure.Storage.AccessCondition * Microsoft.Azure.Storage.File.FileRequestOptions * Microsoft.Azure.Storage.OperationContext * IProgress<Microsoft.Azure.Storage.Core.Util.StorageProgress> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<string>
override this.DownloadTextAsync : System.Text.Encoding * Microsoft.Azure.Storage.AccessCondition * Microsoft.Azure.Storage.File.FileRequestOptions * Microsoft.Azure.Storage.OperationContext * IProgress<Microsoft.Azure.Storage.Core.Util.StorageProgress> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<string>
Public Overridable Function DownloadTextAsync (encoding As Encoding, accessCondition As AccessCondition, options As FileRequestOptions, operationContext As OperationContext, progressHandler As IProgress(Of StorageProgress), cancellationToken As CancellationToken) As Task(Of String)

Paramètres

encoding
Encoding

Objet Encoding qui indique le type d’encodage de texte à utiliser.

accessCondition
AccessCondition

Objet AccessCondition qui représente les conditions d'accès pour le fichier.

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.

progressHandler
IProgress<StorageProgress>

Objet IProgress<T> pour gérer les StorageProgress messages.

cancellationToken
CancellationToken

CancellationToken à observer en attendant qu'une tâche se termine.

Retours

Objet Task qui représente l'opération actuelle.

Attributs

S’applique à