HttpStreamContent.ReadAsBufferAsync Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Serializzare HttpStreamContent in un buffer come operazione asincrona.
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)
Restituisce
Windows.Foundation.IAsyncOperationWithProgress<Windows.Storage.Streams.IBuffer,unsigned long long>
IAsyncOperationWithProgress<IBuffer,uint64_t>
Oggetto che rappresenta l'operazione asincrona.
Implementazioni
- Attributi
Commenti
Questa operazione non verrà bloccata. Il valore IAsyncOperationWithProgress restituito (di IBuffer e intero senza segno a 64 bit) viene completato dopo che tutto il contenuto è stato scritto nel buffer.
La classe HttpStreamContent può essere usata per trasmettere contenuto che potrebbe essere di lunghezza arbitraria. Il metodo ReadAsBufferAsync avrà esito negativo se tutti gli elementi HttpStreamContent non possono adattarsi alla memoria perché questo metodo richiede che l'intero contenuto venga memorizzato nel buffer in memoria per primo.