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
요청 작업을 취소해야 하는 경우 알 수 있습니다.
반환
쓰기 작업의 완료를 나타내는 작업입니다.