HttpMultipartFormDataContent.ReadAsStringAsync Méthode

Définition

Sérialisez httpMultipartFormDataContent 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 HttpMultipartFormDataContent peut être utilisée pour diffuser du contenu de longueur arbitraire. La méthode ReadAsStringAsync échouera si l’ensemble de HttpMultipartFormDataContent ne peut pas tenir dans la mémoire, car cette méthode nécessite que l’ensemble du contenu soit d’abord mis en mémoire tampon.

S’applique à