HttpMessageExtensions.ReadContentAsJsonAsync<T> 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.
Reads the JSON content from the http response message.
public static System.Threading.Tasks.Task<T> ReadContentAsJsonAsync<T> (this System.Net.Http.HttpResponseMessage message, bool rewindContentStream = false);
static member ReadContentAsJsonAsync : System.Net.Http.HttpResponseMessage * bool -> System.Threading.Tasks.Task<'T>
<Extension()>
Public Function ReadContentAsJsonAsync(Of T) (message As HttpResponseMessage, Optional rewindContentStream As Boolean = false) As Task(Of T)
Type Parameters
- T
The type of object contained in the JSON.
Parameters
- message
- HttpResponseMessage
The response message to be read.
- rewindContentStream
- Boolean
Rewind content stream if set to true.
Returns
Task<T>
An object of type T instantiated from the response message's body.