HttpFormUrlEncodedContent.ReadAsStringAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Serialize the HttpFormUrlEncodedContent to a String as an asynchronous operation.
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)
Returns
Windows.Foundation.IAsyncOperationWithProgress<Platform::String,unsigned long long>
IAsyncOperationWithProgress<winrt::hstring,uint64_t>
The object representing the asynchronous operation.
Implements
- Attributes
Remarks
This operation will not block. The returned IAsyncOperationWithProgress(String, UInt64) object will complete after all of the content has been written to the String.