你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

HttpMessageExtensions.ReadContentAsStringAsync Method

Definition

Reads the JSON content from the http response message.

public static System.Threading.Tasks.Task<string> ReadContentAsStringAsync (this System.Net.Http.HttpResponseMessage message, bool rewindContentStream = false);
static member ReadContentAsStringAsync : System.Net.Http.HttpResponseMessage * bool -> System.Threading.Tasks.Task<string>
<Extension()>
Public Function ReadContentAsStringAsync (message As HttpResponseMessage, Optional rewindContentStream As Boolean = false) As Task(Of String)

Parameters

message
HttpResponseMessage

The response message to be read.

rewindContentStream
Boolean

Rewind content stream if set to true.

Returns

An object of type T instantiated from the response message's body.

Applies to