HttpContent::CreateContentReadStreamAsync Method ()
Serialize the HTTP content to a memory stream as an asynchronous operation.
Assembly: System.Net.Http (in System.Net.Http.dll)
This operation will not block. The returned Task<TResult> object will complete after all of the content has been written to the memory stream.
Once the operation completes, the Result property on the returned task object contains the memory stream that that represents the HTTP content. The returned stream can then be used to read the content using various stream APIs.
The CreateContentReadStreamAsync method buffers the content to a memory stream. Derived classes can override this behavior if there is a better way to retrieve the content as stream. For example, a byte array or a string could use a more efficient method way such as wrapping a read-only MemoryStream around the bytes or string.)
Available since 8
.NET Framework
Available since 4.5
Portable Class Library
Supported in: portable .NET platforms
Windows Phone
Available since 8.1