HttpMultipartContent.ReadAsStringAsync Méthode

Définition

Sérialisez httpMultipartContent dans une chaîne en tant qu’opération asynchrone.

public:
 virtual IAsyncOperationWithProgress<Platform::String ^, unsigned long long> ^ ReadAsStringAsync() = ReadAsStringAsync;
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperationWithProgress<winrt::hstring, uint64_t> ReadAsStringAsync();
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperationWithProgress<string,ulong> ReadAsStringAsync();
function readAsStringAsync()
Public Function ReadAsStringAsync () As IAsyncOperationWithProgress(Of String, ULong)

Retours

IAsyncOperationWithProgress<String,UInt64>

Windows.Foundation.IAsyncOperationWithProgress<Platform::String,unsigned long long>

IAsyncOperationWithProgress<winrt::hstring,uint64_t>

Objet représentant l’opération asynchrone.

Implémente

Attributs

Remarques

Cette opération ne se bloque pas. L’objet IAsyncOperationWithProgress(String, UInt64) retourné se termine une fois que tout le contenu a été écrit dans la chaîne.

La classe HttpMultipartContent peut être utilisée pour diffuser en continu du contenu de longueur arbitraire. La méthode ReadAsStringAsync échoue si l’ensemble de HttpMultipartContent ne peut pas tenir dans la mémoire, car cette méthode nécessite que tout le contenu soit d’abord mis en mémoire tampon.

S’applique à