次の方法で共有


HttpResponseDataExtensions.WriteBytesAsync メソッド

定義

オーバーロード

WriteBytesAsync(HttpResponseData, Byte[])

指定されたバイトを応答本文に非同期的に書き込みます。

WriteBytesAsync(HttpResponseData, Byte[], CancellationToken)

指定されたバイトを応答本文に非同期的に書き込み、取り消し要求を監視します。

WriteBytesAsync(HttpResponseData, Byte[])

ソース:
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)

ソース:
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

適用対象