HttpMultipartFormDataContent.ReadAsBufferAsync 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.
Sérialisez httpMultipartFormDataContent dans une mémoire tampon en tant qu’opération asynchrone.
public:
virtual IAsyncOperationWithProgress<IBuffer ^, unsigned long long> ^ ReadAsBufferAsync() = ReadAsBufferAsync;
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperationWithProgress<IBuffer, uint64_t> ReadAsBufferAsync();
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperationWithProgress<IBuffer,ulong> ReadAsBufferAsync();
function readAsBufferAsync()
Public Function ReadAsBufferAsync () As IAsyncOperationWithProgress(Of IBuffer, ULong)
Retours
Windows.Foundation.IAsyncOperationWithProgress<Windows.Storage.Streams.IBuffer,unsigned long long>
IAsyncOperationWithProgress<IBuffer,uint64_t>
Objet représentant l’opération asynchrone.
Implémente
- Attributs
Remarques
Cette opération ne se bloque pas. L’IAsyncOperationWithProgress retourné (de IBuffer et entier 64 bits non signé) se termine une fois que tout le contenu a été écrit dans la mémoire tampon.
La classe HttpMultipartFormDataContent peut être utilisée pour diffuser en continu du contenu de longueur arbitraire. La méthode ReadAsBufferAsync échoue si tous les éléments HttpMultipartFormDataContent ne peuvent pas tenir dans la mémoire, car cette méthode nécessite que tout le contenu soit d’abord mis en mémoire tampon.