HttpContentExtensions.ReadAsAsync Method (HttpContent, Type)

Returns a Task that will yield an object of the specified type from the content instance.

Namespace:  System.Net.Http
Assembly:  System.Net.Http.Formatting (in System.Net.Http.Formatting.dll)

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function ReadAsAsync ( _
    content As HttpContent, _
    type As Type _
) As Task(Of Object)
'Usage
Dim content As HttpContent 
Dim type As Type 
Dim returnValue As Task(Of Object)

returnValue = content.ReadAsAsync(type)
public static Task<Object> ReadAsAsync(
    this HttpContent content,
    Type type
)
[ExtensionAttribute]
public:
static Task<Object^>^ ReadAsAsync(
    HttpContent^ content, 
    Type^ type
)
static member ReadAsAsync : 
        content:HttpContent * 
        type:Type -> Task<Object> 
public static function ReadAsAsync(
    content : HttpContent, 
    type : Type
) : Task<Object>

Parameters

  • content
    Type: HttpContent
    The HttpContent instance from which to read.
  • type
    Type: System.Type
    The type of the object to read.

Return Value

Type: System.Threading.Tasks.Task<Object>
A Task that will yield an object instance of the specified type.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type HttpContent. When you use instance method syntax to call this method, omit the first parameter. For more information, see https://msdn.microsoft.com/en-us/library/bb384936(v=vs.118) or https://msdn.microsoft.com/en-us/library/bb383977(v=vs.118).

Remarks

This override use the built-in collection of formatters.

See Also

Reference

HttpContentExtensions Class

ReadAsAsync Overload

System.Net.Http Namespace