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

HttpResponseDataExtensions.WriteBytesAsync 方法

定义

重载

WriteBytesAsync(HttpResponseData, Byte[])

将提供的字节异步写入响应正文。

WriteBytesAsync(HttpResponseData, Byte[], CancellationToken)

将提供的字节异步写入响应正文,并监视取消请求。

WriteBytesAsync(HttpResponseData, Byte[])

Source:
HttpResponseDataExtensions.cs

将提供的字节异步写入响应正文。

public static System.Threading.Tasks.Task WriteBytesAsync (this Microsoft.Azure.Functions.Worker.Http.HttpResponseData response, byte[] value);
static member WriteBytesAsync : Microsoft.Azure.Functions.Worker.Http.HttpResponseData * byte[] -> System.Threading.Tasks.Task
<Extension()>
Public Function WriteBytesAsync (response As HttpResponseData, value As Byte()) As Task

参数

response
HttpResponseData

要向其写入字符串的响应。

value
Byte[]

要写入请求正文的字节内容。

返回

表示异步操作的 Task

适用于

WriteBytesAsync(HttpResponseData, Byte[], CancellationToken)

Source:
HttpResponseDataExtensions.cs

将提供的字节异步写入响应正文,并监视取消请求。

public static System.Threading.Tasks.Task WriteBytesAsync (this Microsoft.Azure.Functions.Worker.Http.HttpResponseData response, byte[] value, System.Threading.CancellationToken cancellationToken);
static member WriteBytesAsync : Microsoft.Azure.Functions.Worker.Http.HttpResponseData * byte[] * System.Threading.CancellationToken -> System.Threading.Tasks.Task
<Extension()>
Public Function WriteBytesAsync (response As HttpResponseData, value As Byte(), cancellationToken As CancellationToken) As Task

参数

response
HttpResponseData

要向其写入字符串的响应。

value
Byte[]

要写入请求正文的字节内容。

cancellationToken
CancellationToken

要监视取消请求的标记。

返回

表示异步操作的 Task

适用于