Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Include Protected Members
Include Inherited Members
Reads information from an HTTP entity body and content headers.
This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.
Overload List
Name | Description | |
---|---|---|
![]() ![]() |
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, IEnumerable<MediaTypeFormatter>) | Returns a Task that will yield an object of the specified type <typeparamref name="T" /> from the content instance. |
![]() ![]() |
ReadAsAsync(HttpContent, Type) | 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(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>, 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. |
Top