HttpResponseWritingExtensions.WriteAsync 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
WriteAsync(HttpResponse, String, CancellationToken) |
將指定的文字寫入回應本文。 將會使用 UTF-8 編碼。 |
WriteAsync(HttpResponse, String, Encoding, CancellationToken) |
使用指定的編碼,將指定的文字寫入回應本文。 |
WriteAsync(HttpResponse, String, CancellationToken)
將指定的文字寫入回應本文。 將會使用 UTF-8 編碼。
public static System.Threading.Tasks.Task WriteAsync (this Microsoft.AspNetCore.Http.HttpResponse response, string text, System.Threading.CancellationToken cancellationToken = default);
static member WriteAsync : Microsoft.AspNetCore.Http.HttpResponse * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task
<Extension()>
Public Function WriteAsync (response As HttpResponse, text As String, Optional cancellationToken As CancellationToken = Nothing) As Task
參數
- response
- HttpResponse
- text
- String
要寫入回應的文字。
- cancellationToken
- CancellationToken
通知何時應該取消要求作業。
傳回
表示寫入作業完成的工作。
適用於
WriteAsync(HttpResponse, String, Encoding, CancellationToken)
使用指定的編碼,將指定的文字寫入回應本文。
public static System.Threading.Tasks.Task WriteAsync (this Microsoft.AspNetCore.Http.HttpResponse response, string text, System.Text.Encoding encoding, System.Threading.CancellationToken cancellationToken = default);
static member WriteAsync : Microsoft.AspNetCore.Http.HttpResponse * string * System.Text.Encoding * System.Threading.CancellationToken -> System.Threading.Tasks.Task
<Extension()>
Public Function WriteAsync (response As HttpResponse, text As String, encoding As Encoding, Optional cancellationToken As CancellationToken = Nothing) As Task
參數
- response
- HttpResponse
- text
- String
要寫入回應的文字。
- encoding
- Encoding
要使用的編碼方式。
- cancellationToken
- CancellationToken
通知何時應該取消要求作業。
傳回
表示寫入作業完成的工作。