HttpContentExtensions Class
Specifies extension methods to allow strongly typed objects to be read from HttpContent instances.
Assembly: System.Net.Http.Formatting (in System.Net.Http.Formatting.dll)
| Name | Description | |
|---|---|---|
![]() ![]() | ReadAsAsync(HttpContent^, Type^) | Returns a Task that will yield an object of the specified type from the content instance. |
![]() ![]() | ReadAsAsync(HttpContent^, Type^, CancellationToken) | Returns a Task that will yield an object of the specified type from the content instance using one of the provided formatters to deserialize the content. |
![]() ![]() | ReadAsAsync(HttpContent^, Type^, IEnumerable<MediaTypeFormatter^>^) | Returns a Task that will yield an object of the specified type from the content instance using one of the provided formatters to deserialize the content. |
![]() ![]() | ReadAsAsync(HttpContent^, Type^, IEnumerable<MediaTypeFormatter^>^, CancellationToken) | Returns a Task that will yield an object of the specified type from the content instance using one of the provided formatters to deserialize the content. |
![]() ![]() | ReadAsAsync(HttpContent^, Type^, IEnumerable<MediaTypeFormatter^>^, IFormatterLogger^) | Returns a Task that will yield an object of the specified type from the content instance using one of the provided formatters to deserialize the content. |
![]() ![]() | ReadAsAsync(HttpContent^, Type^, IEnumerable<MediaTypeFormatter^>^, IFormatterLogger^, CancellationToken) | Returns a Task that will yield an object of the specified type from the content instance using one of the provided formatters to deserialize the content. |
![]() ![]() | ReadAsAsync<T>(HttpContent^) | Returns a Task that will yield an object of the specified type <typeparamref name="T" /> from the content instance. |
![]() ![]() | ReadAsAsync<T>(HttpContent^, CancellationToken) | Returns a Task that will yield an object of the specified type from the content instance. |
![]() ![]() | ReadAsAsync<T>(HttpContent^, IEnumerable<MediaTypeFormatter^>^) | Returns a Task that will yield an object of the specified type <typeparamref name="T" /> from the content instance. |
![]() ![]() | ReadAsAsync<T>(HttpContent^, IEnumerable<MediaTypeFormatter^>^, CancellationToken) | Returns a Task that will yield an object of the specified type from the content instance. |
![]() ![]() | ReadAsAsync<T>(HttpContent^, IEnumerable<MediaTypeFormatter^>^, IFormatterLogger^) | Returns a Task that will yield an object of the specified type <typeparamref name="T" /> from the content instance. |
![]() ![]() | ReadAsAsync<T>(HttpContent^, IEnumerable<MediaTypeFormatter^>^, IFormatterLogger^, CancellationToken) | Returns a Task that will yield an object of the specified type from the content instance. |
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

