Freigeben über


HttpStreamContent.ReadAsStringAsync Methode

Definition

Serialisieren Sie httpStreamContent als asynchronen Vorgang in eine Zeichenfolge .

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)

Gibt zurück

IAsyncOperationWithProgress<String,UInt64>

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

IAsyncOperationWithProgress<winrt::hstring,uint64_t>

Das Objekt, das den asynchronen Vorgang darstellt.

Implementiert

Attribute

Hinweise

Dieser Vorgang wird nicht blockiert. Das zurückgegebene IAsyncOperationWithProgress(String, UInt64) -Objekt wird abgeschlossen, nachdem der gesamte Inhalt in die Zeichenfolge geschrieben wurde.

Die HttpStreamContent-Klasse kann verwendet werden, um Inhalte zu streamen, die von beliebiger Länge sein können. Die ReadAsStringAsync-Methode schlägt fehl, wenn der gesamte HttpStreamContent-Inhalt nicht in den Arbeitsspeicher passen kann, da diese Methode erfordert, dass der gesamte Inhalt zuerst im Arbeitsspeicher gepuffert wird.

Gilt für: